CSS - Pseudo-elemento: prima
Descrizione
Lo pseudo-elemento : before viene utilizzato per inserire del contenuto prima di un elemento.
Esempio
Di seguito è riportato l'esempio che dimostra come utilizzare : before element per aggiungere del contenuto prima di qualsiasi 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>
Questo produrrà il seguente link nero: