关于select下拉框样式修改问题

select样式

下拉的箭头一般是浏览器默认的,但是有时候会感觉它很丑或者与实际想要的箭头效果不一样。百度总结几种方法。

1.将浏览器默认的下拉框样式清除,然后应用上自己的,再附一张向右对齐小箭头的图片即可。

select {
  /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/
  border: solid 1px #000;

  /*很关键:将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;

  /*在选择框的最右侧中间显示小箭头图片*/
  background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;


  /*为下拉小箭头留出一点位置,避免被文字覆盖*/
  padding-right: 14px;
}


/*清除ie的默认选择框样式清除,隐藏下拉箭头*/
select::-ms-expand { display: none; }

2.为其添加一个父容器,容器是用来覆盖小箭头的,然后为select添加一个向右的小偏移或者宽度大于父级元素。设置父级的CSS属性为超出部分不可见,即可覆盖即小箭头。然后再为父级容器添加背景图片即可。overflow: hidden并不能隐藏下拉框的显示。旧版ie不支持appearance,一般是用的这种方法。

<span style="font-family:KaiTi_GB2312;font-size:14px;"><div id="parent">  
  <select>  
      <option>what</option>  
      <option>the</option>  
      <option>hell</option>  
  </select>  
</div></span>  
<span style="font-family:KaiTi_GB2312;font-size:14px;"> #parent {  
    background: url('yourimage') no-repeat;  
    width: 100px;  
    height: 30px;  
    overflow: hidden;  
}  

#parent select {  
    background: transparent;  
    border: none;  
    padding-left: 10px;  
    width: 120px;  
    height: 100%;  
}</span>  

猜你喜欢

转载自blog.csdn.net/qq_37050500/article/details/70244217