Answers for "black in # css"

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
0

dotted underline css

.dotted { 
  border-bottom: 1px dotted; 
}

<p><span class="dotted">some text</span></p>
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language