入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

修改select的默认样式

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

---------------------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%;    
}


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




声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像