Summary
You can change the cursor into a hand pointer when hovering over any element using the CSS cursor property with the value pointer.
1
To make the cursor a hand pointer for all list items, set the style for the <li> element.
2
Alternatively, you can use the CSS property :hover to cursor:grab; to make the cursor a hand pointer when hovering over the list of items.
3
According to
See more results on Neeva
Summaries from the best pages on the web
Summary
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.
How to Change the Cursor into a Hand Pointer on Hover using CSS
tutorialrepublic.com
Summary
If you want to change a mouse pointer into a hand pointer when hovering over a list item, you can set a class for your list item ( <li> ) and define the style only for that one. But if you want to have a hand pointer for all of your list items, just set the style for the <li> element.
How to Change Cursor on Hover in CSS
w3docs.com
The cursor property in CSS controls what the mouse cursor will look like when it is ... style applied so when you hover the text, the cursor changes to text ...
cursor | CSS-Tricks - CSS-Tricks
css-tricks.com
CSS Cursors - The cursor property of CSS allows you to specify the type of cursor that ... hovers over a link, the cursor changes from a pointer to a hand. ...
CSS - Cursors
tutorialspoint.com