JSFiddle - React, Tailwind, and code Playground
by jrunning
HTML
<a href="#a">a</a>
<a href="#b">b</a>
<div id="a">a</div>
<div id="b">b</div>
CSS
div {
font-size: 400%;
position: absolute;
top: 0;
right: 0;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
}
div:target {
-webkit-transform: translate(-100px, 100px)
}
body {
color: white;
background-color: black;
}
}