我有一个透明背景的下拉菜单。它在 Chrome 中运行良好,但在 Safari 中select具有这种灰色渐变背景。
这是我的 CSS:
div.controls {
div.wrapper {
select {
background: transparent;
border: none;
color: blue;
width: 100px;
text-overflow: ellipsis;
option {
width: 200px;
}
}
}
}
我怎样才能解决这个问题?