美文网首页
select统一浏览器样式css

select统一浏览器样式css

作者: 杜乡的AGG | 来源:发表于2017-01-06 10:07 被阅读0次
<div id="parent">
  <select>
      <option>what</option>
      <option>the</option>
      <option>hell</option>
  </select>
</div>
#parent{
    background: url('http://ourjs.github.io/static/2015/arrow.png') right center no-repeat; 
   /* the width and the height of your image */
    width: 100px;
    height: 30px;
    overflow: hidden;
    border: solid 1px #ccc;
}

#parent select{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background:transparent;
    border:none;
    padding-left:10px;
    width: 100px;
    height:100%;    
}

相关文章

网友评论

      本文标题:select统一浏览器样式css

      本文链接:https://www.haomeiwen.com/subject/qnptbttx.html