当前位置: 首页 > Web前端 > CSS

清除css中select的下拉箭头样式

时间:2023-03-30 15:22:08 CSS

清除css中select的下拉箭头样式select{/*Chrome和Firefox中的边框不一样,所以我复制了*/border:solid1px#000;/*很关键:清除默认select选择框样式*/appearance:none;-moz-appearance:none;-webkit-appearance:none;/*在selection最右边中间显示一个小箭头图片box*/background:url("http://ourjs.github.io/static/2015/arrow.png")no-repeatscrollrightcentertransparent;/*给小下拉箭头留个位置,避免被coveredbytext*/padding-right:14px;}/*清除ie默认选择框样式,隐藏下拉箭头*/select::-ms-expand{display:none;}