Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p:first-child {
background-color: #1c87c9;
color:#fff;
}
</style>
</head>
<body>
<p>Lorem ipsum est simplement du faux texte...</p>
<h2>Exemple du sélecteur first-child</h2>
<p>Lorem Ipsum est simplement du faux texte...</p>
</body>
</html>