JSFiddle - React, Tailwind, and code Playground

by jitendravyas

HTML

<div class="box blueb">
    <a href="#">Hello</a>
</div>

CSS

.box.blueb a { color: #0098aa; text-decoration: none; padding-left: .85em; position: relative; }
.box.blueb a:hover { text-decoration: underline; }
.box.blueb a:before { content: "> "; position: absolute; left: 0; }
.box.blueb a:before:hover{text-decoration: none;}