Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/82.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/36.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 如何删除<;选择>;firefox中的下拉图标背景色_Html_Css_Firefox - Fatal编程技术网

Html 如何删除<;选择>;firefox中的下拉图标背景色

Html 如何删除<;选择>;firefox中的下拉图标背景色,html,css,firefox,Html,Css,Firefox,移除在firefox中选择-选项标记下拉图标按钮背景色 下面是HTML代码 <select> <option>test</option> <option>test</option> <option>test</option> <option>test</option> </select> 我认为您需要定制下拉列表。因此,请使用css作为自定义下拉列表。此链

移除在firefox中选择-选项标记下拉图标按钮背景色

下面是HTML代码

 <select>
  <option>test</option>
  <option>test</option>
  <option>test</option>
  <option>test</option>
</select> 

我认为您需要定制
下拉列表。因此,请使用
css
作为
自定义下拉列表
。此链接将帮助您。。。

我不完全理解你的问题。你想要白色的背景色还是什么?可能是
select {
   -moz-appearance : none;
   text-indent:0.01px;
   text-overflow:'';
}