📝 Edit page
➕ Add page
Decoration
Resources
- text-decoration-color in Mozilla docs.
- text-decoration in Mozilla docs.
Turn on underline
div {
text-decoration: underline;
}
Change color of line
If underling is already on.
div {
text-decoration-color: grey;
}
div:hover {
text-decoration-color: blue;
}
Turn on underline and set color of the line
div {
text-decoration: underline grey;
}