:first-of-type
(selettore CSS e jQuery) riguarda il primo elemento HTML del tipo indicato come selezione (è uguale al selettore :nth-of-type(1)
).
Sintassi
:first-of-type { /* codice */ }
Esempi
<style> span:first-of-type { background-color: yellow; } </style> <p>Parola1 <span>Parola2</span> Parola3 <span>Parola4</span>.</p>
Parola1 Parola2 Parola3 Parola4.
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment