content
(proprietà CSS) inserisce, in combinazione con i selettori ::after
e ::before
, un certo contenuto o codice nell’Elemento cui acceda.
Sintassi
[selettore] { content: testo|codice }
valore | descrizione |
---|---|
XXX | XXX |
Esempi
<style> .after_1::after { content: url(https://goo.gl/lP08W1); } .after_2::after { content: "[testo aggiunto]"; background-color: yellow; color: red; font-weight: bold; } </style> <p class="after_1">Paragrafo1</p> <div class="after_2">Paragrafo2</div>
Paragrafo1
Paragrafo2
0 Comment