我在几个元素上使用以下CSS:
b:hover{
background-color: whitesmoke;
padding: 30px;
}
但是,在Firefox等中进行渲染时,鼠标指针不再表示“手指指针”。相反,它使用光标指示和“指向”。有没有一种使用CSS的方法来保留通常的“手指指针”?
谢谢...
最佳答案
尝试cursor:pointer
.b {
background-color: whitesmoke;
padding: 30px;
width:50px;
height:50px;
cursor:pointer;
}
<div class="b"></div>
关于html - 将鼠标手指保持在b:hover元素上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29229705/