css如何去掉select原始样式

css代码:

select {
        /*将默认的select选择框样式清除*/
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    }
    /*IE浏览器隐藏下拉箭头*/
    select::-ms-expand {
        display: none;
    }

 选中select的时候去除边框虚线样式:

select:focus { outline: none; }

 

posted @ 2018-09-12 14:50  前端HL  阅读(4263)  评论(0编辑  收藏  举报