Since you can underline any text in CSS like so:
h4 { text-decoration: underline; }
How can you also then edit the \'line\' that is drawn
Thanks to the magic of new css options this is now possible natively:
a { text-decoration: underline; text-decoration-thickness: 5px; text-decoration-skip-ink: auto; text-underline-offset: 3px; }
As of yet support is relatively poor. But it'll land in other browsers than ff eventually.