0

So, the standard cursor when you have nothing selected. Normally, when you hover over a button, the cursor changes to a hand. I have a simple button like this:

<button>Submit</button>

But it does not change to the hand when it is over the button. How can change that the cursor so it changes into a hand?

1 Answers1

0

You can use the cursor: pointer to change the cursor. For example -

button:hover {
  cursor: pointer;
}
<button>Submit</button>

For more information on the cursor property see this documentation.

Archit Gargi
  • 634
  • 1
  • 8
  • 24