自定义下拉框控件(<select></select>)

来源:互联网 发布:梦三国修改数据 编辑:程序博客网 时间:2024/05/01 14:21

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%;    }
0 0
原创粉丝点击