3

我有几个<div>s,其中一些有class: hidden,像这样:

<div id="firstDiv" class="hidden">content</div>
<div id="secondDiv">content</div>

我知道要选择第一个<div>没有class: hidden. 到目前为止,我一直在尝试CSSdiv:not(.hidden):first-child但它不起作用。

如何正确编写选择器?

4

2 回答 2

8

你可以使用这样的东西

html

<div id="firstDiv" class="hidden">content</div>
<div id="secondDiv">content</div> <!-- only this one will be selected -->
<div id="thirdDiv">content</div>

css

div:not(.hidden)
{
    background-color: red;
}
div:not(.hidden) ~ div:not(.hidden)
{
    background-color: white; /*reset everything to normal*/
}
于 2013-10-01T12:38:16.423 回答
0

使用下一个兄弟选择器+,您可以编写一些东西,在隐藏的 div 之后,总能找到第一个未隐藏的 div。

div.hidden + div:not(.hidden) 
{
    background-color: #ff0;
}

http://jsfiddle.net/mbFFQ/

于 2013-10-01T12:37:43.567 回答