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
しかし、それらは機能しません
解決策は何ですか?助けてください
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
しかし、それらは機能しません
解決策は何ですか?助けてください
:not(h3):not(p) + p {
...
}
</ p>
このようなクラスを使用してください...
<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 */
}