JSFiddle - React, Tailwind, and code Playground

by devy indriyani

HTML

<ul>
<li><a href="#">Here is a nice link <span> &raquo; select this item</span></a></li>
<li><a href="#">Here is a nice link <span> &raquo; select this item</span></a></li>
<li><a href="#">Here is a nice link <span> &raquo; select this item</span></a></li>
</ul>

CSS

body {padding-top:25px}
a:link, a:visited {
	text-decoration: underline;
	color: #990000;
}
a:hover, a:active {
	text-decoration: none;
	color: #990000;
}
li a:link span, li a:visited span {
	display: none;
}
li a:hover span, li a:active span {
	display: inline;
}