cl2
このコードを使用すると、クラスのすべての段落が" "redとは異なります。
<head>
<style type="text/css">
p{ color:#000000; }
:not(.cl2){ color:#ff0000; }
</style>
</head>
<body>
<p class="cl1">This is a paragraph.</p>
<p class="cl2">This is second paragraph.</p>
<p class="cl2">This is third paragraph.</p>
<p class="cl3">This is fourth paragraph.</p>
<p class="cl2">This is fifth paragraph.</p>
<p class="cl2">This is sixth paragraph.</p>
<p class="cl4">This is seventh paragraph.</p>
<p class="cl5">This is eigth paragraph.</p>
<p class="cl1">This is nineth paragraph.</p>
</body>
:not
たとえば、クラス " cl2
" AND " "を無視するようにセレクターを拡張するにはどうすればよいcl4
ですか?私は試しました::not(.cl2, .cl4){ color:#ff0000; }
しかし、それは機能しません。