Answers for "how to change the color of the undeline in css"

CSS
1

how to change the color of the undeline in css

/* Changing the color of the underline to red */
p {
  text-decoration: underline;
  text-decoration-color: red;
}
Posted by: Guest on February-27-2021

Code answers related to "how to change the color of the undeline in css"

Browse Popular Code Answers by Language