我正在为我的站点设置一组按钮,并且我需要一些专业的见解。
为了减少CSS膨胀,我想将按钮分类为不同的颜色,例如.button.blue。
将来会发生以下问题吗? (假设我不只讲.blue课)
我是否必须使用类似.button.button-blue的东西?
.button {
display:inline-block;
padding: 9px 18px;
margin: 20px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
text-align: center;
background: #FFE150;
}
.button.blue {
background: #49b8e7;
border:1px solid #54abcf;
border-bottom:1px solid #398fb4;
color:#FFF
text-shadow: 0 1px 0 rgba(255,255,255, 0.5);
}
.header{
height: 50px;
}
.header.blue {
background: blue;
color: #fff;
}
最佳答案
假设您希望它们像这样工作,那么使用多类可以正常工作:
<div class="button blue">
Will use .button and .button.blue
</div>
<div class="button">
Will only use .button
</div>
<div class="header blue">
Will use .header and .header.blue
</div>
<div class="header">
Will only use .header
</div>
<div class="blue">
Will use neither of the .blue declarations because it doesn't contain header or button.
</div>
关于css - 我可以正确继承CSS的子类吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9212955/