我有這樣的佈局:爲什麼我的jQuery:not()選擇器不能在CSS中工作?
<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()
selector in jQuery是基於:not()
in 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;
}
但只要我做到這一點停止工作 - 在所有瀏覽器!我未分配的扇區不會變灰,淡出或標記爲「未分配」。
Updated but not so interactive jsFiddle preview
爲什麼jQuery中的:not()
選擇工作,但是在CSS中失敗?它不應該在兩個地方同樣的工作,因爲jQuery聲稱是「CSS3兼容」,或者有什麼我失蹤?
有沒有一個純粹的CSS解決方法,或者我將不得不依靠一個腳本?
相關:[組合:不是()選擇器在CSS](http://stackoverflow.com/questions/7403129/combining-not-selectors-in-css) – BoltClock
也相關:[百科全書堆棧交換](http ://blog.stackoverflow.com/2012/05/encyclopedia-stack-exchange) - 這是我對它的第一個實驗,到目前爲止,除了那個流氓downvote,我必須說它比我預期的更好: ) – BoltClock