Double souligner dans HTML
<p>
I want <du>this stuff</du> double underlined.
</p>
<!-- CSS -->
du {
text-decoration-line: underline;
text-decoration-style: double;
}
siam88