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