See [here at w3schools](https://www.w3schools.com/cssref/css_selectors.php)
## Matching attributes
```css
a[href]
a[href*="flibble"] { ... } /* elements whose href contains "flibble" */
a[href^="mr"] { ... } /* elements whose href begins with "mr" */
a[href$="hexvision"] { ... } /* elements whose href ends with "hexvision" */
a[href*="://" ] { ... } /* external links and URIs */
```