JSFiddle - React, Tailwind, and code Playground
by alekskorovin
HTML
<a href="#href"> <span>inline element</span> Link</a>
CSS
a {
color: red;
}
a:before {
content: 'sample text ';
color: blue;
}
a:active:before {
color: green;
}
a:active span {
color: black;
}