JSFiddle - React, Tailwind, and code Playground
HTML
<div id="id_1">
<h1>
Länk 1 <!-- (utan länk) strunt i det... -->
</h1>
</div>
<div id="id_2">
<h2>
<a href="länk2.html">länk 2</a>
</h2>
</div>
CSS
a {color: black;}
a:hover {color: yellow;} /* switches color onmouseover */
h1 {color: blue;}
h1:hover {color:pink; }
h2 a {color: green;}
h2 a:hover {color: pink; }