从<select>元素中删除下拉箭头?</select>

时间:2012-06-02 11:45:51

标签: html css html-select

  

可能重复:
  How to remove the arrow from a <select> tag in Firefox

箭头只会在Chrome中消失。这是我正在使用的脚本:

<style type="text/css">
select {
    font-family: 'Viga', sans-serif;
    font-size:16px;
    color:#168ACB;
    padding: 5px 10px 5px 10px;
    margin: 0px 5px 5px 5px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #eaeaea inset;
    -moz-box-shadow: 0 3px 0 #ccc, 0 -1px #eaeaea inset;
    box-shadow: 0 3px 0 #ccc, 0 -1px #eaeaea inset;
    background: #f8f8f8;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
}
</style>

Chrome:http://i.imgur.com/Ocpux.png Firefox&amp; IE:http://i.imgur.com/5zGuX.png

1 个答案:

答案 0 :(得分:3)

试一试:

How to remove the arrow from a select element in Firefox

巧合的是我的评论:

  

尝试将其封装在一个隐藏溢出的div中?Div将具有宽度&lt;选择宽度。

类似于最高投票答案。