本帖最后由 harglo 于 2021-4-17 15:55 编辑
select设置了cursor: pointer;有效,但option设置cursor: pointer;无效,怎样才能让option设置cursor?
[HTML] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>select标签的option怎么设置cursor</title>
<style>
select{
cursor: pointer;
}
.option{
cursor: pointer; /*无效*/
}
</style>
</head>
<body>
<select>
<option class="option">Skill</option>
<option class="option" >Experiment</option>
</select>
</body>
</html>
不知道什么原因,我用谷歌浏览器运行有问题,但是用Edge运行就没问题,也有人用谷歌浏览器运行也没问题,就很奇怪。。。 |