8

How to Add Hand Cursor on hover at Image.

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

Anyone can help me here?

2 Answers2

27

Use CSS:

img:hover {
    cursor: pointer;
}
Andy Jenkins
  • 617
  • 8
  • 26
7
img {
cursor: pointer;
}

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