css如何去掉select原始样式
css代码:
select { /*将默认的select选择框样式清除*/ appearance: none; -moz-appearance: none; -webkit-appearance: none; } /*IE浏览器隐藏下拉箭头*/ select::-ms-expand { display: none; }
选中select的时候去除边框虚线样式:
select:focus { outline: none; }
css代码:
select { /*将默认的select选择框样式清除*/ appearance: none; -moz-appearance: none; -webkit-appearance: none; } /*IE浏览器隐藏下拉箭头*/ select::-ms-expand { display: none; }
选中select的时候去除边框虚线样式:
select:focus { outline: none; }