I’m just trying to change the cursor to pointer when the cursor is hovered through image but it’s not working.
Does img:hover works in chrome 13 or other browsers.
img:hover
{
cusror:pointer;
}
and html is sa below
<div>
<img src="images/ocean1.jpg" width="200" height="120">
</div>
For
cursor: pointeryou don’t need to usehover. Just use:The cursor will then automatically change to a pointer when you hover over any image.