Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

CSS 疑似クラスセレクタ(:first-child)

他の要素の最初の子である要素にスタイルを適用します。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! CSS</title>
<meta charset="UTF-8">
<style>
p:first-child { /* 他の要素の最初の子であるp要素 */
    background:  pink;
}
</style>
</head>
<body>
<p>body要素の最初の子の段落です。</p>
<p>2番目の子の段落です。</p>
</body>
</html>

レンダリング(Chrome)

関連エントリー

CSSエントリーのまとめ - プログラマーな日々
CSSに関するエントリーのまとめページです。 ...