Я не хочу использовать! Важно или писать новое правило для каждого случая, который может обрабатывать вспомогательные классы. Например, я хочу это сделать;Те же теги на теге тела для большей специфики css
HTML
<body id="sameId">
<div class="wrapper">
<div class="article text-center text-bold">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
<div class="article">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
<div class="article">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
<div class="article">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
<div class="article">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
<div class="article">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
</div>
</body>
CSS
/* Helper Classes */
#sameId .text-center {
text-align:center;
}
#sameId .text-bold {
font-weight: bold;
}
/* Article Styles */
.wrapper .article {
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ddd;
text-align:left;
font-weight: normal;
}
ли вызывает проблемы в будущем, используя тот же идентификатор тегов тела всех страниц для большей специфичности CSS?
https://jsbin.com/tamaxetuse/1/edit?html,css,output
Есть причина, почему вы явно установить 'текстовый align' и' шрифта weight' в '.wrapper .article'? Если они не будут перезаписаны другим правилом ранее в вашем CSS, вы можете просто [пропустить их] (http://jsfiddle.net/8uedncgm/). – insertusernamehere