如何在禁用的单选按钮/复选框上更改丑陋的光标图像

Den*_*dic 6 html css internet-explorer google-chrome disabled-control

我希望在大多数浏览器(Chrome,Internet Explorer等)中显示的禁用控件上悬停时删除这个丑陋的红色图像

在此输入图像描述

Den*_*dic 7

如果CSS3是一个选项,只需使用:disabled selector并将光标设置为其他内容:

input[type='radio']:disabled {
    cursor: default;
}

input[type='checkbox']:disabled {
    cursor: default;
}
Run Code Online (Sandbox Code Playgroud)