How to select an element with 2 classes [duplicate

2019-01-31 02:43发布

Possible Duplicate:
CSS Selector that applies to elements with two classes

i have this elements

<div class="a b"></div>
<div class="b"></div>
<div class="a"></div>

I want apply to element with class a and b the color #666. How can I do this with CSS?

2条回答
神经病院院长
2楼-- · 2019-01-31 02:45

You can chain class selectors without a space between them:

.a.b {
     color: #666;
}

Note that, if it matters to you, IE6 treats .a.b as .b, so in that browser both div.a.b and div.b will have gray text. See this answer for a comparison between proper browsers and IE6.

查看更多
啃猪蹄的小仙女
3楼-- · 2019-01-31 03:02

Just chain them together:

.a.b {
  color: #666;
}
查看更多
登录 后发表回答