Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable hand symbol when hovering over a link

Tags:

html

css

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.

like image 514
Udayraj Khuman Avatar asked Jul 20 '13 05:07

Udayraj Khuman


2 Answers

You can use the CSS cursor property to get this.

  • Use default to get a pointer like when not hovering over any text
  • Use text to get a text-selection cursor like when hovering over non-link text
a {
    cursor: default;
}

Example: http://jsfiddle.net/Nc5CS/

like image 140
jcsanyi Avatar answered Oct 07 '22 22:10

jcsanyi


a
{
    cursor:default;
}

Arrow is default symbol for hover on link.So use cursor:default if cursor is other than arrow or hand.

like image 22
Ankit Jain Avatar answered Oct 07 '22 21:10

Ankit Jain