Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除外された要素の膨大なリストを除いて、ページ全体のすべてのスタイルを変更する必要があります。どうやら CSSnot()は次のようなコンマ構文をサポートしていないようです: :not(p, div). 以下のような巨大なリストを作成して、それぞれのスタイルを繰り返す必要がありますか? それとも、より迅速な解決策がありますか?
not()
:not(p, div)
:not(p){xyz} :not(div){xyz} :not(a){xyz}
試す
:not(p):not(div):not(a){xyz}
http://jsfiddle.net/mowglisanu/MA3nM/