ホームページ > 記事 > ウェブフロントエンド > CSS サブ要素セレクターの使用法の詳細な紹介
基本的なサブ要素セレクターは 1 つ下のレベルのみを検索でき、クロスすることはできません
HTML コード:
<p> this is my <strong><i>w</i>eb</strong> page. </p>
CSS コード:
p>strong { color: purple; } p>strong>i { font-size: 50px; }
1. 子孫セレクターと比較して、サブ要素セレクターのみが選択できます。要素の子である要素。
2. サブ要素セレクターは、不等号「>」をコネクタとして使用します。
例 1:
<html> <head> <style type="text/css"> h1 > strong { color: red; } </style> </head> <body> <h1>This is <strong>very</strong> <strong>very</strong> important.</h1> <h1>This is <em>really <strong>very</strong></em> important.</h1> </body> </html>
例 2
<html> <head> <style type="text/css"> table.company td > p { color: red; } </style> </head> <body> <table class='company'> <tr> <td> <p>hello</p> </td> </tr> </table> <table> <tr> <td> <p>world</p> </td> </tr> </table> </body> </html>
CSS サブ要素セレクターの使用方法の詳細と関連記事を参照してください。にPHPの中国語サイトです!