zl程序教程

您现在的位置是:首页 >  其它

当前栏目

清除select的边框和三角形

SELECT 清除 边框 三角形
2023-09-27 14:26:05 时间

select {
border: 0;
display: block;
position: relative;
min-height: 1.146667rem;
line-height: 1.146667rem;
white-space: nowrap;
width: 100%;
overflow: hidden;
padding-right: .6rem;
background-color: #eee;
background: transparent;
appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari 和 Chrome */
}

去掉边框:border: 0; background: transparent;

去掉小三角:

appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari 和 Chrome */