/ Published in: CSS
Often in need of an underline simply for visual emphasis, not titles, links, etc. I will add an emphasize inside of another emphasize e.g. em or strong and apply an underlining style through CSS.
Expand |
Embed | Plain Text
/* Underlining Guide <em>Emphasize the <em>Emphasized</em></em> with an <strong>Underline for <strong>Double Emphasis</strong></strong> */ em em, strong strong {text-decoration:underline; /* border-bottom:1px; */}
You need to login to post a comment.
