Forbidden cursor?

HtmlCss

Html Problem Overview


I am looking for the name of the "forbidden/cancel" cursor.

I can't seem to find it.

Html Solutions


Solution 1 - Html

The values of cursor that represent what you're looking for are not-allowed and no-drop. These values are new to CSS3, so if you need browser compatibility you should specify an image instead.

Solution 2 - Html

The css cursor: not-allowed; also works.

Solution 3 - Html

here is complete sample:

.not-allowed {
  cursor: not-allowed;
}

<input type="submit" value="not-allowed" class="not-allowed" disabled />

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
QuestionHailwoodView Question on Stackoverflow
Solution 1 - HtmlBoltClockView Answer on Stackoverflow
Solution 2 - HtmlLeopold GaultView Answer on Stackoverflow
Solution 3 - HtmlAlireza SabahiView Answer on Stackoverflow