JSFiddle - React, Tailwind, and code Playground

by austinfrance

HTML

<a name="name1"></a>
<div>Hello 1</div>
<!-- html5 standard states that a <a> element must be closed, and that /> does not close a non-void element which <a> is so the fact that the next two divs are wrapped in the a -->
<a name="name2"/>
<div>Hello 2</div>
<div>Hello 3</div>
<a name="name3"></a>
<div>Hello 4</div>

CSS

a:hover {
    text-decoration: underline;
}