Answers for "double underline in html"

0

double underline in html

<p>
  I want <du>this stuff</du> double underlined.
</p>

<!-- CSS  -->
du {
  text-decoration-line: underline;
  text-decoration-style: double;
}
Posted by: Guest on March-22-2022

Browse Popular Code Answers by Language