CSS - Pseudo-elemento: antes

Descrição

O pseudo-elemento : before é usado para inserir algum conteúdo antes de um elemento.

Exemplo

A seguir está o exemplo que demonstra como usar : before element para adicionar algum conteúdo antes de qualquer elemento.

<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>

Isso produzirá o seguinte link preto -