Answers for "underline in a"

10

css underline color

u
{
	text-decoration: underline;
  	text-decoration-color: red;
}
example of use: (in html)

<p>The word <u>CAT</u>, is underlined </p>
Posted by: Guest on March-28-2020
7

text underline hover css

a:hover {
  text-decoration: underline;
}
Posted by: Guest on May-28-2020

Browse Popular Code Answers by Language