Pregunta

I'm having a custom styled checkboxes with image insead of the dom element. It's using this selector. What this selector do? +em is bugging me big time :)

input[type='checkbox']:checked+em::before

Please help.

¿Fue útil?

Solución

The + is an adjacent sibling combinator. So that selector selects the em element immediately following a checked checkbox. This is as distinct from the general sibling combinator, ~, which would match any following sibling of the input even if not right next to it.

Otros consejos

Creates a pseudo-element thats is the first child of the em tag before an input element with the attribute type checkbox that is checked.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top