Reputation: 548
I want to disable a decoration in any hyper link means when we hover a link then we get a hand symbol instead of mouse cursor. I want to disable it .Whenever i hover mouse on a link it should just show mouse cursor but not hand symbol.
Upvotes: 8
Views: 26518
Reputation: 1286
a
{
cursor:default;
}
Arrow is default symbol for hover on link.So use cursor:default if cursor is other than arrow or hand.
Upvotes: 4
Reputation: 8174
You can use the CSS cursor
property to get this.
default
to get a pointer like when not hovering over any texttext
to get a text-selection cursor like when hovering over non-link texta {
cursor: default;
}
Example: http://jsfiddle.net/Nc5CS/
Upvotes: 14