牛骨文教育服务平台(让学习变的简单)
博文笔记

修改select的默认样式

创建时间:2016-07-21 投稿人: 浏览次数:1300

---------------------HTML------------------------

<div id="parent">
  <select>
      <option>what</option>
      <option>the</option>
      <option>hell</option>
  </select>
</div>


----------------------CSS------------------------

#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: 120px;
    height:100%;    
}


----------------------效果-------------------------




声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。