When viewing my site, the cursor only changes to the gloved hand for <a> tags, not <button> tags. Is there a reason for this?
Here is my code (the button tags have an id of #more in css3).
#more {
background:none;
border:none;
color:#FFF;
font-family:Verdana, Geneva, sans-serif;
}
see:
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor
so you need to add:
cursor:pointer;In your case use:
This will apply the curser to the element with the ID “more” (can be only used once). So in your HTML use
If you want to apply this to more than one button then you have more than one possibility:
using CLASS
and in your HTML use
or apply to a html context:
and in your HTML use