:nth-child
演算子を使用して、最初の段落の横にある特定のDIV内のすべての段落をターゲットにするにはどうすればよいですか?
:nth-child(/* select all but the first one */) {
color: green;
}
<div>
<p>Example 1</p>
<p>Example 2</p>
<p>Example 3</p>
<p>Example 4</p>
<p>Example 5</p>
<p>Example 6</p>
<p>Example 7</p>
</div>