Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a link have the gloved hand mouse when hovering [duplicate]

Tags:

css

Possible Duplicate:
Make mouse pointer a hand when hover over <li> element?

I have an input form button when you hover your mouse over it the mouse pointer doesn't change orientation. How can I make a link specify to show the gloved mouse finger pointer?

like image 488
HollerTrain Avatar asked Apr 29 '10 14:04

HollerTrain


People also ask

How do I change my mouse hand to hover?

You can simply use the CSS cursor property with the value pointer to change the cursor into a hand pointer while hover over any element and not just hyperlink. In the following example when you place the cursor over the list item, it will change into a hand pointer instead of the default text selection cursor.

What is the pointing hand cursor called?

It is also called a pointer, but today pointer refer to a specific cursor, the one that looks like a hand with an extended index finger.

How do I make a cursor hand in HTML?

Use CSS property to create cursor to hand when user hovers over the list of items. First create list of items using HTML <ul> and <li> tag and then use CSS property :hover to cursor:grab; to make cursor to hand hover the list of items.

What link state provides a change when the mouse goes over it?

hover - The hover option is the color that the text changes to when the mouse is over the link. In this example, the link changes to a blue color when a mouse cursor is hovering over a link.


1 Answers

cursor: pointer;
like image 107
Justen Avatar answered Oct 24 '22 17:10

Justen