小编典典

如何仅使用 CSS 设置 <select> 下拉菜单的样式?

javascript

是否有一种纯 CSS 的方式来设置<select>下拉菜单的样式?

我需要<select>尽可能人性化地设置表单样式,而不需要任何 JavaScript。我可以在 CSS 中使用哪些属性来做到这一点?

这段代码需要兼容所有主流浏览器:

  • Internet Explorer 6, 7, and 8
  • Firefox
  • Safari

我知道我可以使用 JavaScript:示例

而且我不是在谈论简单的样式。我想知道,我们只能用 CSS 做的最好的事情。


阅读 223

收藏
2022-02-22

共1个答案

小编典典

以下是三个解决方案:

解决方案 #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。

我们可以改进此技术并添加对 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(https://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;
    }
}
<select>
  <option>Apples</option>
  <option selected>Pineapples</option>
  <option>Chocklate</option>
  <option>Pancakes</option>
</select>

这个解决方案很简单并且有很好的浏览器支持——它通常就足够了。


如果需要 Internet Explorer 的浏览器支持,请提前阅读。

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

将元素包装select在具有固定宽度的 div和overflow:hidden.

然后给元素一个比 divselect大约 20 像素的宽度。

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

这种方法的优势在于它是跨浏览器(Internet Explorer 8 及更高版本、WebKitGecko)。但是,这种方法的缺点是选项下拉菜单在右侧突出(我们隐藏了 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(https://stackoverflow.com/favicon.ico) 96% / 20% no-repeat #EEE;
}
<div class="styled">
  <select>
    <option>Pineapples</option>
    <option selected>Apples</option>
    <option>Chocklate</option>
    <option>Pancakes</option>
  </select>
</div>

如果在 Firefox 上需要自定义箭头 - 在版本 35之前- 但您不需要支持旧版本的 Internet Explorer - 然后继续阅读…

解决方案 #3 - 使用pointer-events属性(演示

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

优点:它在 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(https://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;
  }
}

<!--[if !IE]> -->
<div class="notIE">
  <!-- <![endif]-->
  <span class="fancyArrow"></span>
  <select>
    <option>Apples</option>
    <option selected>Pineapples</option>
    <option>Chocklate</option>
    <option>Pancakes</option>
  </select>
  <!--[if !IE]> -->
</div>
<!-- <![endif]-->
2022-02-22