美文网首页
修改select下拉框默认样式

修改select下拉框默认样式

作者: 桃花谷主V | 来源:发表于2017-12-27 19:27 被阅读0次

/*将默认的select选择框样式清除*/

appearance:none;

-moz-appearance:none;

-webkit-appearance:none;

/*在选择框的最右侧中间显示小箭头图片*/

background:url("../images/small-arrow-down.png")97%no-repeat;

background-size:7px5px;

/*为下拉小箭头留出一点位置,避免被文字覆盖*/

padding-right:14px;

text-align:center;

/*清除ie的默认选择框样式清除,隐藏下拉箭头*/

select::-ms-expand{display:none; }

相关文章

网友评论

      本文标题:修改select下拉框默认样式

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