html – 将光标更改为标签?

前端之家收集整理的这篇文章主要介绍了html – 将光标更改为标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当鼠标悬停在< select>中的项目上时,有没有办法更改光标?组合框?我假设做了选项{cursor:pointer;在CSS中可以工作,但似乎没有.

解决方法

可悲的是,< option>标记由操作系统而不是浏览器呈现,因此您无法使用游标设置它们的样式.相反,使用像 Bootstrap’s Dropdown这样的插件.

MSDN says it best

Except for background-color and color,style settings applied through the style object for the option element are ignored. In addition,style settings applied directly to individual options override those applied to the containing select element as a whole.

MDN also chimes in

Some elements simply can’t be styled using CSS. These include all advanced user interface widgets such as range,color,or date controls as well as all the dropdown widgets,including <select>,<option>,<optgroup> and <datalist> elements. The file picker widget is also known not to be stylable at all. The new <progress> and <meter> elements also fall in this category.

原文链接:https://www.f2er.com/html/228069.html

猜你在找的HTML相关文章