「CSS」:first-of-typeのサンプル
書式
html要素:first-of-type
1.htmlコード
<h2>AA</h2> <p>PP BB</p> <p>PP CC</p>
2.cssコード
/* 兄弟要素の中で最初の <p> 要素をすべて選択 */ p:first-of-type { color: green; font-style: italic; }
Coding Changes the World
書式
html要素:first-of-type
1.htmlコード
<h2>AA</h2> <p>PP BB</p> <p>PP CC</p>
2.cssコード
/* 兄弟要素の中で最初の <p> 要素をすべて選択 */ p:first-of-type { color: green; font-style: italic; }