Domanda

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.

È stato utile?

Soluzione

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.

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top