如何在悬停时更改光标类型 css
How to change cursor type on hover in css
我在 css 的正文中将我的光标类型设置为十字准线,在悬停时我需要它变成一个普通的十字,但是当我将鼠标悬停在按钮上时它仍然变成一个指针,如何我是否让它从十字准线变为悬停时交叉?
你是这个意思吗
#one:hover {
cursor: pointer;
}
button:hover {
cursor: default;
}
<div id="one">
Hover Me!
<button>Hover Me!</button>
</div>
我在 css 的正文中将我的光标类型设置为十字准线,在悬停时我需要它变成一个普通的十字,但是当我将鼠标悬停在按钮上时它仍然变成一个指针,如何我是否让它从十字准线变为悬停时交叉?
你是这个意思吗
#one:hover {
cursor: pointer;
}
button:hover {
cursor: default;
}
<div id="one">
Hover Me!
<button>Hover Me!</button>
</div>