You can use a border for the box and you can probably use a cursor element or get a cursor trail which hides the actual cursor.
[Canceled Question]
You can use cursor:none; property here:
.box {
width:100px;
height:100px;
border: 1px solid black;
cursor:none;
}
<div class="box">
</div>