lang/css/ CssSelectors


See here at w3schools

Matching attributes

a[href]
a[href*="flibble"] { ... }    /* <a> elements whose href contains "flibble" */
a[href^="mr"] { ... }         /* <a> elements whose href begins with "mr" */
a[href$="hexvision"] { ... }  /* <a> elements whose href ends with "hexvision" */
a[href^="https?:" ] { ... }   /* external links */