css怎么设置select下拉选项按钮,如何仅使用CSS设置 <select> 下拉列表的样式?

这是三个解决方案:

解决方案#1-外观:无-使用Internet Explorer 10-11解决方法

要隐藏在appearance: none选择元素上设置的默认箭头,然后使用以下命令添加您自己的自定义箭头background-image

select {

-webkit-appearance: none;

-moz-appearance: none;

appearance: none; /* Remove default arrow */

background-image: url(...); /* Add custom arrow */

}

浏览器支持:

appearance: none具有非常好的浏览器支持(caniuse)-Internet Explorer 11(及更高版本)和Firefox 34(及更高版本)除外。

我们可以改进此技术,并通过添加以下内容来添加对Internet Explorer 10和Internet Explorer 11的支持:

select::-ms-expand {

display: none; /* Hide the default arrow in Internet Explorer 10 and Internet Explorer 11 */

}

如果担心Internet Explorer 9,则无法删除默认箭头(这意味着我们现在将有两个箭头),但是,我们可以使用时髦的Internet Explorer 9选择器。

至少撤消我们的自定义箭头-保留默认的选择箭头不变。

/* Target Internet Explorer 9 to undo the custom arrow */

@media screen and (min-width:0\0) {

select {

background-image:none\9;

padding: 5px\9;

}

}

全部一起:

select {

margin: 50px;

width: 150px;

padding: 5px 35px 5px 5px;

font-size: 16px;

border: 1px solid #CCC;

height: 34px;

-webkit-appearance: none;

-moz-appearance: none;

appearance: none;

background: url(http://www.stackoverflow.com/favicon.ico) 96% / 15% no-repeat #EEE;

}

/* CAUTION: Internet Explorer hackery ahead */

select::-ms-expand {

display: none; /* Remove default arrow in Internet Explorer 10 and 11 */

}

/* Target Internet Explorer 9 to undo the custom arrow */

@media screen and (min-width:0\0) {

select {

background: none\9;

padding: 5px\9;

}

}

Apples

Pineapples

Chocklate

Pancakes

该解决方案很简单,并且具有良好的浏览器支持-通常应该足够了。

如果需要浏览器支持Internet Explorer 9(及更高版本)和Firefox 34(及更高版本),请继续阅读…

解决方案#2截断选择元素以隐藏默认箭头(demo)

select用固定宽度和的div 将元素包装overflow:hidden。

然后给select元素一个比div大20像素的宽度。

结果是该select元素的默认下拉箭头将被隐藏(由于overflow:hidden容器上的),并且您可以将所需的任何背景图像放置在div的右侧。

这种方法的优点是它是跨浏览器(Internet Explorer 8和更高版本,WebKit和Gecko)。但是,这种方法的缺点是,选项下拉菜单在右侧突出(被我们隐藏的20个像素…,因为选项元素采用选择元素的宽度)。

[然而,应该注意的是,如果自定义选择元素仅对于移动设备是必需的,那么上述问题就不适用,因为每部电话都会以本机方式打开选择元素。因此,对于移动设备,这可能是最好的解决方案。]

.styled select {

background: transparent;

width: 150px;

font-size: 16px;

border: 1px solid #CCC;

height: 34px;

}

.styled {

margin: 50px;

width: 120px;

height: 34px;

border: 1px solid #111;

border-radius: 3px;

overflow: hidden;

background: url(http://www.stackoverflow.com/favicon.ico) 96% / 20% no-repeat #EEE;

}

Pineapples

Apples

Chocklate

Pancakes

如果在Firefox(版本35之前)上需要自定义箭头,但您不需要支持旧版本的Internet Explorer,则请继续阅读…

解决方案#3-使用pointer-events属性(demo)

这里的想法是在本地下拉箭头上覆盖一个元素(以创建我们的自定义箭头),然后在其上禁止指针事件。

优点:它在WebKit和Gecko中运行良好。看起来也不错(没有突出option元素)。

缺点: Internet Explorer(Internet Explorer 10及更低版本)不支持pointer-events,这意味着您无法单击自定义箭头。另外,此方法的另一个(明显)缺点是您不能用悬停效果或手形光标作为新箭头图像的目标,因为我们刚刚禁用了它们的指针事件!

但是,通过这种方法,您可以使用Modernizer或条件注释使Internet Explorer恢复为内置的标准箭头。

注意: Internet Explorer 10不再受支持conditional comments:如果要使用此方法,则可能应该使用Modernizr。但是,仍然可以通过此处描述的CSS hack从Internet Explorer 10中排除指针事件CSS 。

.notIE {

position: relative;

display: inline-block;

}

select {

display: inline-block;

height: 30px;

width: 150px;

outline: none;

color: #74646E;

border: 1px solid #C8BFC4;

border-radius: 4px;

box-shadow: inset 1px 1px 2px #DDD8DC;

background: #FFF;

}

/* Select arrow styling */

.notIE .fancyArrow {

width: 23px;

height: 28px;

position: absolute;

display: inline-block;

top: 1px;

right: 3px;

background: url(http://www.stackoverflow.com/favicon.ico) right / 90% no-repeat #FFF;

pointer-events: none;

}

/*target Internet Explorer 9 and Internet Explorer 10:*/

@media screen and (min-width: 0\0) {

.notIE .fancyArrow {

display: none;

}

}

Apples

Pineapples

Chocklate

Pancakes

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值