如何使用 CSS 将光标更改为悬停时的手形指针
主题:HTML / CSS上一页|下一页
Answer: Use the CSS cursor
Property
您可以简单地使用值为 pointer
的 CSS cursor
属性将光标更改为手形指针,同时将鼠标悬停在任何元素上,而不仅仅是超链接。
在以下示例中,当您将光标放在列表项上时,它将变为手形指针,而不是默认的文本选择光标。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Make the Cursor a Hand Pointer using CSS</title>
<style>
li{
cursor: pointer;
}
</style>
</head>
<body>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答:
Advertisements