Dup Goto 📝

CssSelectors

PT2/aw/lang/css 07-31 13:46:40
To Pop
10 lines, 59 words, 416 chars Monday 2023-07-31 13:46:40

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*="://" ] { ... }       /* external links and URIs */