Files
30-seconds-of-code/snippets/custom-text-selection.md
Angelos Chalaris a8818b1998 Add extractor and builder
Tested and working
2019-08-22 14:04:18 +03:00

36 lines
763 B
Markdown

---
title: Custom text selection
tags: visual,intermediate
---
Changes the styling of text selection.
```html
<p class="custom-text-selection">Select some of this text.</p>
```
```css
::selection {
background: aquamarine;
color: black;
}
.custom-text-selection::selection {
background: deeppink;
color: white;
}
```
#### Explanation
`::selection` defines a pseudo selector on an element to style text within it when selected. Note that if you don't combine any other selector your style will be applied at document root level, to any selectable element.
#### Browser support
<span class="snippet__support-note">⚠️ Requires prefixes for full support and is not actually
in any specification.</span>
- https://caniuse.com/#feat=css-selection