我正在尝试创建一个自定义下拉控件,我需要隐藏本机控件中的箭头。我正在使用以下
CSS
,它适用于 Chrome 和 Safari,但不适用于 Mozilla 和 IE。
select.desktopDropDown
{
appearance: none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
}
这是一个[jsfiddle][1]。
使用它可以工作,但对于 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 。
简单的例子:
select::-ms-expand {
display: none;
}
select {
-moz-appearance: none;
appearance: none;
text-overflow: ''; /* this is important! */
}
对于 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;
}
事实上,这个技巧主要适用于 IE10+,其中箭头采用 Windows 8 的 Metro 风格,甚至在 Windows 7 上也是如此。尽管 Windows 8 用户必须习惯这种风格,因为它是通过操作系统使用的。无论如何,我建议不要使用:
display: none;
使用方法:
visibility: hidden;
因为,至少在 IE 中,前者会导致选择焦点时所选项目的蓝线覆盖下拉箭头,而后者则不会。
我们可以使用 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>