css line down a link code example
Example 1: 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>
Example 2: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}