[CSS] & [JQUERY] [selettore] ::after

::after (selettore CSS e jQuery) inserisce, dopo l’elemento cui acceda, il contenuto indicato come valore della proprietà CSS content, cui può contestualmente assegnare specifiche regole CSS.

Sintassi

::after {
  /* codice */
}

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

Contenuti correlati

Fonti esterne

css, jquery, selettori css e jquery

Related Articles

0 Comment

Rispondi