たとえば、異なるコンテキストで異なるルールを持つ要素がいくつかありますが、一部のルールは同じです。
それらのために 1 つのクラスを定義し、それを別のコンテキストで拡張しても問題ありませんか?
.read-more {
display: inline-block;
text-align: center;
padding: 0 15px;
text-decoration: none;
color: blue;
margin-left: 5px;
}
#one .read-more {
background: yellow;
}
#two .read-more {
background: #ff9e13;
}