最佳答案
在 Mac 和 iOS 设备上,在 Safari 中,带有背景颜色的 <select>
元素会自动生成光泽。在其他操作系统中似乎不会发生这种情况。
例如,我有一个 select 元素,它具有以下样式属性:
select {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
padding: 3px 6px;
margin: 10px 0 7px;
width: 250px;
background-color: #BD2786;
color: white;
letter-spacing: -.04em;
font-weight: bold;
border: 0;
}
我的元素有我想要的背景颜色,但光泽仍然存在。有人知道怎么把它做成平的颜色吗?