div>p:first-childの例
テキスト sample @
テキスト sample A
テキスト sample B
テキスト sample C
|
<html><head> <style type="text/css"><!--
div>p:first-child { color: red; }
--></style></head>
<body> <div>
<h3>p:first-childの例</h3>
<p>テキスト sample @</p>
</div> <div>
<p>テキスト sample A</p>
<p>テキスト sample B</p>
</div> <blockquote>
<p>テキスト sample C</p>
</blockquote> </body></html>
|