Home >Web Front-end >CSS Tutorial >How to Change a List Item's Cursor to a Hand on Hover?

How to Change a List Item's Cursor to a Hand on Hover?

Susan Sarandon
Susan SarandonOriginal
2024-12-11 17:01:12497browse

How to Change a List Item's Cursor to a Hand on Hover?

How to Make a Cursor Change to a Hand When Hovering over a List Item

When a user hovers over a list item, how can you transform the mouse pointer into a hand pointer? Currently, when the pointer hovers over the list items, it transforms into a text selection pointer.

Solution:

Over time, as pointed out earlier, you can safely utilize the following CSS code:

li { cursor: pointer; }

This code sets the cursor to the pointer style for all list items. As a result, when the mouse hovers over any list item, the pointer will change to a hand shape, indicating that it is clickable.

The above is the detailed content of How to Change a List Item's Cursor to a Hand on Hover?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn