CSS - Pseudo-élément: après

La description

Le pseudo-élément : after est utilisé pour insérer du contenu après un élément.

Exemple

Voici l'exemple qui montre comment utiliser : élément après pour ajouter du contenu après n'importe quel élément.

<html>
   <head>
      <style type = "text/css">
         p:after {
            content: url(/images/bullet.gif)
         }
      </style>
   </head>

   <body>
      <p> This line will be succeeded by a bullet.</p>
      <p> This line will be succeeded by a bullet.</p>
      <p> This line will be succeeded by a bullet.</p>
   </body>
</html>

Cela produira le lien noir suivant -