Udayraj Khuman
Udayraj Khuman

Reputation: 548

Disable hand symbol when hovering over a link

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

Answers (3)

Ankit Jain
Ankit Jain

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

user2568107
user2568107

Reputation:

Use this css:

a {
    cursor: default;
}

Upvotes: 2

jcsanyi
jcsanyi

Reputation: 8174

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/

Upvotes: 14

Related Questions