<div class="grid">
<div class="pointer">Pointer</div>
<div class="help">Help</div>
<div class="wait">Wait</div>
<div class="not-allowed">Not allowed</div>
<div class="zoom-in">Zoom in</div>
<div class="grab">Grab</div>
<div class="img">Image Url</div>
<div class="more">
<a href="https://developer.mozilla.org/nl/docs/Web/CSS/cursor" target="_blank" rel=”noreferrer noopener“>More</a>
</div>
</div>
.help {
cursor: help;
}
.wait {
cursor: wait;
}
.not-allowed {
cursor: not-allowed;
}
.zoom-in {
cursor: zoom-in;
}
.grab {
cursor: grab;
}
.pointer {
cursor: pointer;
}
.img {
cursor: url(https://i.postimg.cc/6q9k2v0w/output-onlinepngtools-1.png), default;
}
body {
display: grid;
place-items: center;
margin: 0;
min-height: 100vh;
background-color: #04142F;
font-family: sans-serif;
font-size: 3vmin;
}
.grid {
display: grid;
gap: 1rem;
grid-template-columns: 20vmin 20vmin 20vmin 20vmin;
}
.grid > div {
display: grid;
place-items: center;
height: 20vmin;
background-color: #013BC2;
color: #ffffff;
}
.grid > div.more {
background-color: #333333;
cursor: pointer;
}
.more a {
color: #ffffff;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.