.list th:not(.foo) {
/* some rules */
}
如何申請這多個類?
.list th:not(.foo), .list th:not(.bar) {
/* some rules */
}
上面的CSS不會當然做到這一點,我需要的是這樣的僞:
.list th:not(.foo and .bar)
是否有可能在CSS以及如何?
.list th:not(.foo) {
/* some rules */
}
如何申請這多個類?
.list th:not(.foo), .list th:not(.bar) {
/* some rules */
}
上面的CSS不會當然做到這一點,我需要的是這樣的僞:
.list th:not(.foo and .bar)
是否有可能在CSS以及如何?
用逗號分隔類的名字可以得到你想要的
.list th:not(.class1, .class2)
4票贊成這個問題?首先它是http://stackoverflow.com/questions/5684160/can-i-have-multiple-not-selectors的副本,其次是這個問題的答案可以發現veeeery很容易在谷歌上甚至在這裏在stackoverflow上。 –
而且?我正在尋找很多,但沒有發現任何東西 – Legionar
我的問題不是關於多個不選擇器,那是我不知道 – Legionar