我是否正确地对CSS进行了子类化?

时间:2012-02-09 14:46:46

标签: css subclassing css-cascade

我正在为我的网站制作一组按钮,我需要一些专业的见解。

为了减少CSS膨胀,我想将我的按钮子类化为不同的颜色, ex .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;
}

4 个答案:

答案 0 :(得分:8)

如果你希望它们能像以下那样工作,你在多类中所拥有的功能将会正常工作:

<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>

答案 1 :(得分:1)

像.button.blue这样的选择器实际上选择了一个具有&#34; blue&#34;和&#34;按钮&#34;作为类,而不是名为.button.blue的类。见http://www.w3.org/TR/CSS21/selector.html#class-html

您可以使用列出的.button.blue样式规则,但是您需要重新排列HTML,以便拥有<button type="button" class="button blue"/>之类的内容。但是,您并不需要拥有按钮类,因为它是一个按钮(或<input type="submit">等)足以在您的选择器中使用。您可以编写一个简单button.blue, input[type=submit].blue{}

的CSS规则

答案 2 :(得分:0)

似乎button.blue就足够了。

两者之间的唯一区别是,如果您使用<button class="button blue"><button class="button button-blue">

你甚至不需要用蓝色复制这幅画......你可以这样做:

.button
{
// button style
}

.header
{
// header style
}

.blue
{
   background: blue; 
   color: #fff; 
}

当然,如果你为每个人添加蓝色类。 (<div class="header blue"><button class="button blue">

答案 3 :(得分:0)

将应用您想要的颜色的类组合在一起。

HTML:

<input type="text" class="text-field-required default" .../>
<select class="autocomplete-drop-down blue">...</select>
<a href="#" class="button-link green" .../>

CSS:

.text-field-required {
    //component css theme without colors
}
.default {
    //default color css theme for any component
}
.blue {
    //blue css theme for any component
}
.green {
    //green css theme for any component
}