JSFiddle - React, Tailwind, and code Playground
by Brodingo
HTML
<div id="hi">
</div>
<a href="#hi">Hi!</a>
CSS
#hi {
width: 100px;
height: 100px;
background-color: blue;
}
#hi:target {
background-color: red;
}
by Brodingo
<div id="hi">
</div>
<a href="#hi">Hi!</a>
#hi {
width: 100px;
height: 100px;
background-color: blue;
}
#hi:target {
background-color: red;
}