Wednesday, June 8, 2016

Cheatsheet - CSS Wildcards

CSS wildcards

[class^="col-sm"] - select all with class name begin with "col-sm"
[class$="-pill"] - select all with the class name end with "-pill"

Notes:

For the wildcard ^ - the class must be also first on the HTML tag list of classes in order for it to work.  This rule seems kind of strange.  I'll need to test it some more.