欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用CSS改变select框的样式

程序员文章站 2022-04-22 13:46:13
...

1、首先清除select原有的样式

select {
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
}
select::-ms-expand { display: none; }

2、写自己定义的样式

select{
    font-size: 13px;
    border: solid 1px #ccc;
    padding: 8px;
    background: url(arrow.png") no-repeat scroll right center transparent;
    width: 70px;
    height: 35px;
    border-radius: 4px;
}

3、这样就好啦

 

(tips:要想写出好看的下拉框,也可以用div模拟select)