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.
そんなこと知ってる:
p+p
別の p の直後に最初の p のスタイルを変更します。しかし、 ap の後の 2 番目の p の css を変更するにはどうすればよいですか?
別のものを追加するだけ+pです:
+p
p+p+p
3 つ以上のp要素がある場合、これは最初の要素の後に続く 2 番目の要素と、後続のすべての要素に適用されます。p1 つの要素にのみ適用する場合は、次を使用します。
p
p:first-child+p+p
または、古いブラウザを無視する余裕がある場合:
p:nth-child(3)