Reputation: 13
I've set my cursor type to crosshair in the body of css, on hover i need it to change to a plain cross, but it still goes to a pointer when i hover over buttons, how do i make it go from a crosshair to cross on hover?
Upvotes: 0
Views: 5284
Reputation: 989
do you mean this.
#one:hover {
cursor: pointer;
}
button:hover {
cursor: default;
}
<div id="one">
Hover Me!
<button>Hover Me!</button>
</div>
Upvotes: 3