Здравствуйте.
Есть например 2 странички: index.html и contacts.html
На index.html и к нему.
То же самое есть на contacts.html
Но на "contacts.html", ширина должна быть 60%, а должен иметь отступ 10px
Как лучше это реализовать:
contacts.html:<input type="text" id="some-id" class="input input-contacts"></input>
<label for="some-id" class="label label-contacts">Foo</label>
style.css.input-contacts{
width: 60%;
}
label {
margin: 10px;
}
ИЛИ:
HTML:<body class="contacts-page">
<input type="text" id="some-id" class="input"></input>
<label for="some-id" class="label">Foo</label>
</body>
CSS
.contacts-page input{
width: 60%;
}
.contacts-page label {
margin: 10px;
}
.