Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Forbidden cursor?

Tags:

html

css

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

I can't seem to find it.

like image 433
Hailwood Avatar asked May 05 '11 22:05

Hailwood


People also ask

How do I make my cursor normal?

Step 1: In the Windows search box, search for "ease of access" and select Ease of access mouse settings from the resulting list. Step 2: In the left-side menu, select Mouse pointer. Step 3: Under Change pointer size, you can adjust the bar to a size that works best for you.

Why is my cursor pointer not working?

Check that the battery of the mouse is charged. Make sure that the receiver (dongle) is firmly plugged in to the computer. If your mouse and receiver can operate on different radio channels, make sure that they are both set to the same channel.

What is the default cursor CSS?

The cursor property of CSS allows you to specify the type of cursor that should be displayed to the user. One good usage of this property is in using images for submit buttons on forms. By default, when a cursor hovers over a link, the cursor changes from a pointer to a hand.


2 Answers

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.

like image 56
BoltClock Avatar answered Oct 12 '22 02:10

BoltClock


The css cursor: not-allowed; also works.

like image 24
Leopold Gault Avatar answered Oct 12 '22 03:10

Leopold Gault