Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 css 使选择框背景透明。我正在使用background-color:transparent;. 它适用于 Firefox,但不适用于 chrome。任何的想法?这是一个活生生的例子。感谢您的时间!
background-color:transparent;
您可能会发现-webkit-appearance: none;很有用。<select>s 是出了名的难以设计风格,如果您追求非自定义的外观和感觉,您可能需要考虑制作自己的风格。
-webkit-appearance: none;
<select>
jsFiddle
.outter_div select { -webkit-appearance: none; }