I am trying to hide the cursor when only the background is displayed in HTML/CSS, but unfortunately, it is not working as expected and the cursor still appears over the background.
Here is my code:
body {
background: url('https://miro.medium.com/max/10368/1*o8tTGo3vsocTKnCUyz0wHA.jpeg') #000000 top left no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
vertical-align: top;
text-align: center;
z-index: -1;
margin: 0;
padding: 0;
cursor: none
}
<body scroll="no" cz-shortcut-listen="true">
</body>