Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p:empty {
width: 200px;
height: 30px;
background: #8ebf42;
}
</style>
</head>
<body>
<h2>Exemple du sélecteur :empty</h2>
<p>Lorem ipsum est simplement du faux texte...</p>
<p></p>
<p>Lorem ipsum est simplement du faux texte...</p>
</body>
</html>