I've searched and everyone says you have to use border to create a custom underline.
But I want my anchor text to all be underlined even when it breaks into multiple lines (like on a narrow screen.)
HTML: <a>This is a bunch of text which I want to underline and which breaks over 2 lines on a mobile screen.</a>
a {border-bottom: 1px solid}
does NOT span multiple lines.
a {text-decoration: underline}
is too thick.
Is there any way to accomplish this?