セレクタ:first-child

書式

セレクタ:first-child

対象

-

継承

-

初期値

-

バージョン

CSS Level 2

対応ブラウザ

Mac IE5.0, NN6.0以降, Firefox, Opera 8(?), Safari

解説

最初の子要素にスタイルを指定します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; left:10px; top:10px;width:300px;height:100px;
border:1px blue solid;
}
div a:first-child { background-color:yellow; }
--></style>
</head>
<body>
<div>
<a href="http://www.openspc2.org/">OpenSpace</a><br>
<a href="http://www.google.co.jp/">Google</a><br>
<a href="#">dummy</a><br>
</div>
</body>
</html>
実際のサンプルを実行する