CSS - Pseudo-élément: avant
La description
Le pseudo-élément : before est utilisé pour insérer du contenu avant un élément.
Exemple
Voici l'exemple qui montre comment utiliser : avant l' élément pour ajouter du contenu avant tout élément.
<html>
<head>
<style type = "text/css">
p:before {
content: url(/images/bullet.gif)
}
</style>
</head>
<body>
<p> This line will be preceded by a bullet.</p>
<p> This line will be preceded by a bullet.</p>
<p> This line will be preceded by a bullet.</p>
</body>
</html>
Cela produira le lien noir suivant -