Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p::before {
content: "Name -";
}
.country::before {
content: normal;
}
</style>
</head>
<h2>Exemple de la propriété content</h2>
<body>
<p>Mon prénom est John</p>
<p class="country">J'habite au Canada</p>
</body>
</html>