我有这个布局:
<div id="sectors">
<h1>Sectors</h1>
<div id="s7-1103" class="alpha"></div>
<div id="s8-1104" class="alpha"></div>
<div id="s1-7605" class="beta"></div>
<div id="s0-7479"></div>
<div id="s2-6528" class="gamma"></div>
<div id="s0-4444"></div>
</div>
使用这些 CSS 规则:
#sectors {
width: 584px;
background-color: #ffd;
margin: 1.5em;
border: 4px dashed #000;
padding: 16px;
overflow: auto;
}
#sectors > h1 {
font-size: 2em;
font-weight: bold;
text-align: center;
}
#sectors > div {
float: left;
position: relative;
width: 180px;
height: 240px;
margin: 16px 0 0 16px;
border-style: solid;
border-width: 2px;
}
#sectors > div::after {
display: block;
position: absolute;
width: 100%;
bottom: 0;
font-weight: bold;
text-align: center;
text-transform: capitalize;
background-color: rgba(255, 255, 255, 0.8);
border-top: 2px solid;
content: attr(id) ' - ' attr(class);
}
#sectors > div:nth-of-type(3n+1) {
margin-left: 0;
}
#sectors > div.alpha { color: #b00; background-color: #ffe0d9; }
#sectors > div.beta { color: #05b; background-color: #c0edff; }
#sectors > div.gamma { color: #362; background-color: #d4f6c3; }
我使用 jQuery 将unassigned
类添加到没有其他类之一的扇区alpha
,beta
或者gamma
:
$('#sectors > div:not(.alpha, .beta, .gamma)').addClass('unassigned');
然后我对该类应用一些不同的规则:
#sectors > div.unassigned {
color: #808080;
background-color: #e9e9e9;
opacity: 0.5;
}
#sectors > div.unassigned::after {
content: attr(id) ' - Unassigned';
}
#sectors > div.unassigned:hover {
opacity: 1.0;
}
一切都在现代浏览器中完美运行。
但是看到:not()
jQuery 中的选择器是基于:not()
CSS3 的,我想我可以将它直接移动到我的样式表中,这样我就不必依赖使用 jQuery 添加额外的类。此外,我对支持旧版本的 IE 并不感兴趣,其他浏览器对:not()
选择器的支持非常好。
所以我尝试将.unassigned
上面的部分更改为这个(知道我的布局中只有扇区 Α、Β 和 Γ):
#sectors > div:not(.alpha, .beta, .gamma) {
color: #808080;
background-color: #e9e9e9;
opacity: 0.5;
}
#sectors > div:not(.alpha, .beta, .gamma)::after {
content: attr(id) ' - Unassigned';
}
#sectors > div:not(.alpha, .beta, .gamma):hover {
opacity: 1.0;
}
但是一旦我这样做,它就会停止工作 - 在所有浏览器中!我未分配的扇区不再变灰、淡出或标记为“未分配”。
为什么:not()
选择器在 jQuery 中工作但在 CSS 中失败?既然 jQuery 声称“符合 CSS3 标准”,那么它在这两个地方的工作方式不应该相同,还是我遗漏了什么?
是否有一个纯 CSS 解决方法或者我必须依赖脚本?