I tried using cursor:pointer
to my div
but still I get the default cursor type on hovering it. What am I doing wrong?
I checked other live sites also, this problem resides all over. Not sure whether it has been deprecated or I'm doing something wrong.
div{
width:100px;
height:100px;
background:red;
}
div:hover{
cursor:pointer
}
<div>
</div>