I have a map element and area as rect
<map name="Map">
<area class="showCursor" shape="rect" coords="1,3,10,8">
</map>
I want the cursor to be default when I hover on that area and added a class showCursor
area.showCursor {
cursor: default;
}
Now this is showing default cursor in chrome, but on IE and Mozilla it is showing the hand.
How can I make it default cursor in all the browsers.