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

标签 html css combobox cross-browser skinning

有没有一种纯 CSS 的方式来设置 <select> 的样式?落下?

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

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

  • Internet Explorer 6、7 和 8
  • 火狐
  • Safari

  • 我知道我可以使用 JavaScript:Example .

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

    我找到了similar questions在堆栈溢出上。

    this one在 Doctype.com 上。

    最佳答案

    以下是三个解决方案:
    解决方案 #1 - 外观:无 - 使用 Internet Explorer 10 - 11 解决方法 (Demo)
    --
    隐藏默认箭头集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 截断选择元素以隐藏默认箭头 (demo)
    --
    (Read more here)
    包裹select具有固定宽度和 overflow:hidden 的 div 中的元素.
    然后给 select元素的宽度大约比 div 大 20 像素。
    结果是 select 的默认下拉箭头元素将被隐藏(由于容器上的 overflow:hidden),并且您可以将所需的任何背景图像放在 div 的右侧。
    优势 这种方法的特点是它是跨浏览器(Internet Explorer 8 及更高版本,WebKitGecko)。但是,劣势这种方法的特点是选项下拉菜单在右侧突出(我们隐藏了 20 个像素......因为选项元素占用了选择元素的宽度)。
    Enter image description here
    [然而,应该注意的是,如果自定义选择元素仅对 是必需的。手机设备 - 那么上述问题不适用 - 因为每部手机 native 打开选择元素的方式。所以对于手机来说,这可能是最好的解决方案。]

    .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 上需要自定义箭头 - Version 35 之前- 但您不需要支持旧版本的 Internet Explorer - 然后继续阅读...
    解决方案 #3 - 使用 pointer-events属性(property) ( demo )
    --
    (Read more here)
    这里的想法是在 native 下拉箭头上覆盖一个元素(以创建我们的自定义箭头),然后禁止其上的指针事件。
    优势:它在 WebKit 和 Gecko 中运行良好。它看起来也不错(没有突出 option 元素)。
    缺点: Internet Explorer(Internet Explorer 10 及以下版本)不支持 pointer-events ,这意味着您无法单击自定义箭头。此外,此方法的另一个(明显)缺点是您不能使用悬停效果或手形光标来定位新箭头图像,因为我们刚刚禁用了它们的指针事件!
    但是,通过这种方法,您可以使用 Modernizer 或条件注释使 Internet Explorer 恢复为标准内置箭头。
    注意:由于 Internet Explorer 10 不支持 conditional comments不再:如果你想使用这种方法,你应该使用 现代化 .但是,仍然可以使用描述的 CSS hack here 从 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]-->

    关于html - 如何仅使用 CSS 设置 <select> 下拉菜单的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44833932/

    相关文章:

    php - 很少,我的数据库中的某些列中没有插入任何值。 PHP MySQL HTML

    html - 在 html5 drop 事件中获取 xy 坐标

    css - 删除正文标签上的顶部边距

    Javascript函数.toggle开始隐藏?

    css3 slideup 向下滑动

    javascript - 阻止 js 函数在初始页面加载时加载

    html - 背景修复和溢出-y :scroll

    javascript - 向组合框添加默认值

    combobox - ExtJS:重新加载存储后的组合框未设置值

    c# - 在 DropDownList 中显示多个值并以编程方式访问这些值