光标指针不适用于Webkit浏览器

时间:2014-11-10 10:55:49

标签: html css file-upload webkit cursor

我有文件上传器控件。

当我将鼠标悬停在Web-Kit浏览器中的按钮上时,光标是默认值,而必须是指针。

我重新发帖 The cursor:pointer property doesn't apply to file upload buttons in Webkit browsers ,但就我而言,我不会使用属性height。也试试@Mohammed Ibrahim建议的解决方案,但它也不适合我。

以下是我的示例: http://jsfiddle.net/q686cc7s/4/ 我尝试为每个可能的选择器添加cursor:pointer,但没有成功。

有什么建议吗?感谢。


如果为display:none设置了input,那么光标可以正常工作,但是上传器 - 不是:)

1 个答案:

答案 0 :(得分:0)

添加这个总是为我做的

input[type="file"]::-webkit-file-upload-button {
    cursor: pointer; 
}