Vanilla by Plus Three
An Advanced, Flexible Front-End Development System
Home / Test

CSS3 Selectors

h2 ~ p

I should be red.


a[href^="http"]

I should be red.


a[href$="pdf"]

I should be red.


a[href*="google"]

I should be red.


p:first-of-type

I should be red.

I should be black.


p:last-of-type

I should be black.

I should be red.


p:only-of-type

I should be red.

I should be black.

I should be black.