Is it possible to remove the hand cursor that appears when hovering over a link? (or keep it set as the normal pointer)

CssHyperlinkMouse Cursor

Css Problem Overview


I would like to remove the hand cursor that appears when you hover over a hyperlink.

I have tried this css:

a.link {
    cursor: pointer;
}

And this:

a.link {
    cursor: pointer !important;
}

And still it changes to the hand when I hover over the link.

Does anyone have any ideas as to why this happens or a solution that would enable me to achieve this effect?

Css Solutions


Solution 1 - Css

That's exactly what cursor: pointer; is supposed to do.

If you want the cursor to remain normal, you should be using cursor: default

Solution 2 - Css

Using inline styling use <a href="your link here" style="cursor:default">your content here</a>. See this example

Alternatively use css. See this example.

This solution is cross-browser compatible.

Solution 3 - Css

<button>
  <a href="https://accounts.google.com/ServiceLogin?continue=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fpc%3Den-ha-apac-in-bk-refresh14&service=mail&dsh=-3966619600017513905"
     style="cursor:default">sign in</a>
</button>

Solution 4 - Css

Try this

To Remove Hand Cursor

a.link {
    cursor: default;
}

Solution 5 - Css

<style>
a{
cursor: default;
}
</style>

> In the above code [cursor:default] is used. Default is the usual arrow cursor that appears.

And if you use [cursor: pointer] then you can access to the hand like cursor that appears when you hover over a link.

> To know more about cursors and their appearance click the below link: https://www.w3schools.com/cssref/pr_class_cursor.asp

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCraig van TonderView Question on Stackoverflow
Solution 1 - CssbevacquaView Answer on Stackoverflow
Solution 2 - CssjacktheripperView Answer on Stackoverflow
Solution 3 - CssjagadishView Answer on Stackoverflow
Solution 4 - CssAnil Kumar ReddyView Answer on Stackoverflow
Solution 5 - CssCode CarbonateView Answer on Stackoverflow