JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <a id="mdn" href="http://developer.mozilla.com">
        Mozilla Developer Network</a>
</div>
<div>
    <a id="w3c" href="http://w3c.org">
        World Wide Web Consortium</a>
</div>
<div>
    <a id="ffx" href="http://www.firefox.com">
        Firefox</a>
</div>

CSS

a { text-decoration: none; }


#mdn:before {
    content:"            ";
}
#w3c:before {
    content:"\a0\a0\a0\a0\a0\a0\a0";
}
#ffx:before {
    content:"\20\20\20\20\20\20\20";
}