Set the text-decoration
style to underline
.
<!-- HTML -->
<span>NOT Underlined</span>
<br/>
<span style="text-decoration: underline;">Underlined</span>
NOT Underlined
Underlined
/* CSS */
.underlined {
text-decoration: underline;
}
<!-- HTML -->
<span>NOT Underlined</span>
<br/>
<span class="underlined">Underlined</span>
NOT Underlined
Underlined