IE 和 Firefox - 自定义下拉菜单无法删除本机箭头

问题描述 投票:0回答:5

我正在尝试创建一个自定义下拉控件,我需要隐藏本机控件中的箭头。我正在使用以下

CSS
,它适用于 Chrome 和 Safari,但不适用于 Mozilla 和 IE。

select.desktopDropDown
{
    appearance: none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
}

这是一个[jsfiddle][1]。

css internet-explorer firefox custom-controls
5个回答
79
投票

使用它可以工作,但对于 IE10+ 和 FF :

你的CSS应该是这样的:

select.desktopDropDown::-ms-expand {
    display: none;
}

更多关于

::ms-expand

然后剩下的:

select.desktopDropDown {
    outline : none;
    overflow : hidden;
    text-indent : 0.01px;
    text-overflow : '';
    background : url("../img/assets/arrow.png") no-repeat right #666;

    -webkit-appearance: none;
       -moz-appearance: none;
        -ms-appearance: none;
         -o-appearance: none;
            appearance: none;
}

注意:我将路径

"../img/assets/arrow.png"
硬编码为背景。

这应该适用于 IE、Firefox 和 Opera 。


19
投票

简单的例子:

对于 I.E:

select::-ms-expand {
    display: none;
}  

对于火狐浏览器:

select {
    -moz-appearance: none;
    appearance: none;

    text-overflow: ''; /* this is important! */
}

3
投票

对于 Fx,我使用

-moz-appearance: checkbox-container
,效果很好。

因此,将所有内容放在一起,以下内容对您来说应该足够了:

select.desktopDropDown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: checkbox-container;
    border-style: none;
}
select.desktopDropDown::-ms-expand {
    display: none;
}

3
投票

事实上,这个技巧主要适用于 IE10+,其中箭头采用 Windows 8 的 Metro 风格,甚至在 Windows 7 上也是如此。尽管 Windows 8 用户必须习惯这种风格,因为它是通过操作系统使用的。无论如何,我建议不要使用:

display: none;

使用方法:

visibility: hidden;

因为,至少在 IE 中,前者会导致选择焦点时所选项目的蓝线覆盖下拉箭头,而后者则不会。


0
投票

我们可以使用 css 创建自定义。在 IE10、Mozilla 和 chrome 浏览器上进行了测试...
工作示例如下:

.customSelect {
  position: relative;
}

/* IE11 hide hacks*/
select::-ms-expand {
display: none;
}

.customSelect:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  
  position: absolute;
  pointer-events: none;
}

.customSelect select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  display: block;
  width: 100%;
  height: 50px;
  float: none;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}
<div class="customSelect">
  <label>
      <select>
          <option selected> Select Box </option>
          <option>Option 1</option>
          <option>Option 2</option>
          <option>Last long option</option>
      </select>
  </label>
</div>

© www.soinside.com 2019 - 2024. All rights reserved.