激活时删除选择选项中的边框



您是否已经注意到Google最近在Chrome上激活时在选择选项中实现了边框?任何想法如何禁用此功能?火狐没有这个边框。

谷歌浏览器版本 83.0.4103.61(64 位(

<html>
<head>
<style>
select option:focus {
border:0px;
outline:0px;
-webkit-appearance: none;
outline: none !important;
}
</style>
</head>
<body>
<select>
<option>Test11</option>
<option>Test22</option>
</select>
</body>
</html>

jsfiddle.net/fq3korhg/

试试这个:

select:focus {
outline:none;
}

需要为选择设置属性:

select:focus {
outline: none; 
}

最新更新