Sometimes, we want to hide the cursor in a webpage using CSS.
In this article, we’ll look at how to hide the cursor in a webpage using CSS.
How to hide the cursor in a webpage using CSS?
To hide the cursor in a webpage using CSS, we set the cursor
property.
For instance, we write
<div class="nocursor">Some stuff</div>
<style type="text/css">
.nocursor {
cursor: none;
}
</style>
to set the cursor
property to none
to hide the cursor on the div with class nocursor
.
Conclusion
To hide the cursor in a webpage using CSS, we set the cursor
property.