:not()
(selettore CSS e jQuery) riguarda, come il metodo jQuery .not()
, gli Elementi non esclusi dal valore passato come suo parametro, che ha sua volta è un (singolo) selettore. Per il suo opposto, cfr. il selettore jQuery :has()
e il metodo jQuery .has()
.
Sintassi
:not() { /* codice */ }
Esempi
<style> input:not(:disabled) { background-color: yellow; } p:not(.classe_esclusa) { color: yellow; } :not(p) { color: red; } </style> <input> <input disabled> <p class="classe_esclusa">Elemento escluso</p> <p class="classe_inclusa">Elemento incluso</p>
Elemento escluso
Elemento incluso
0 Comment