Disable hand symbol when hovering over link

I want to turn off the decor in any hyperlink, when we point the link, then we get a hand symbol instead of the mouse cursor. I want to disable it. Each time you mouse over a link, it should just show the mouse cursor, but not the hand symbol.

+6
source share
3 answers

You can use the CSS cursor property to get this.

  • Use default to get a pointer, for example, when it does not hover over any text
  • Use text to get the cursor to select text, for example, when you hover over text without a link.
 a { cursor: default; } 

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

+7
source
 a { cursor:default; } 

Arrow is the default character for pointing to a link. Use cursor: default if cursor is different from arrow or hand.

+4
source

Use this css:

 a { cursor: default; } 
+2
source

Source: https://habr.com/ru/post/949881/


All Articles