### Custom text selection
Changes the styling of text selection.
#### HTML
```html
Select some of this text.
```
#### CSS
```css
.custom-text-selection::selection {
background: red;
color: white;
}
```
#### Demo
Select some of this text.
#### Explanation
`::selection` defines a pseudo selector on an element to style text within it when selected.
#### Browser support
⚠️ Requires prefixes for full support and is not actually
in any specification.
* https://caniuse.com/#feat=css-selection