JSFiddle - React, Tailwind, and code Playground
by oilvier
HTML
<div>Zoom +</div>
<div>Zoom -</div>
CSS
div {
background: lightblue;
padding: 80px;
cursor: zoom-in;
text-align: center;
font-family: sans-serif;
}
div + div {
margin-top: 20px;
cursor: zoom-out;
}