7

How to Add Hand Cursor on hover at Image.

<img src="img/buy.png" style="height: 100px;">

Anyone can help me here?

2 Answers2

24

Use CSS:

img:hover {
    cursor: pointer;
}
Andy Jenkins
  • 577
  • 4
  • 26
6
img {
cursor: pointer;
}

This means that when you hover over the image your cursor will be a pointer.