我想选择所有不遵循H3或P的P:
<img>
<p> this is selected</p>
<p> this is not</p>
<p> this is not</p>
<span>
<p> this is selected</p>
<h3>
<p> this is not</p>
我试过
p + :not(h3, p) and :not(h3, p) + p
但它们不起作用
解决方案是什么?请帮忙
答案 0 :(得分:5)
答案 1 :(得分:0)
使用这样的类......
<img>
<p class="sel"> this is selected</p>
<p> this is not</p>
<p> this is not</p>
<span>
<p class="sel"> this is selected</p>
<h3>
<p> this is not</p>
然后在你的CSS中你可以用......修改它们。
.sel {
/* Styling here */
}
答案 2 :(得分:0)
:not(h3):not(p) + p {
...
}