CSS を使用して、親の 2 番目の子である各
要素のスタイルを設定するには、CSS :nth-child(n) セレクターを使用します。
次のコードを実行して、nth-child(n) セレクターを実行してみてください。
ライブ デモ
<!DOCTYPE html> <html> <head> <style> p:nth-child(4) { background: orange; color: white; } </style> </head> <body> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> <p>This is demo text 4.</p> <p>This is demo text 5.</p> <p>This is demo text 6.</p> </body> </html>
以上がCSS を使用して、親の 2 番目の子である各要素のスタイルを設定します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。