您的位置:首页 > Web前端 > CSS

html 简单select样式修改并兼容IE浏览器

2016-11-15 09:18 405 查看
//去掉ie下select下拉箭头按钮
select::-ms-expand {
display: none;
}
.history-select{
width: 120px;
height: 30px;
outline: none;
background-color: #002c53;
border: none;
color: #fff;
appearance:none;
-moz-appearance:none;
background-image: url("../images/select_icon.png");
background-position: 100px 8px;
background-repeat: no-repeat;
-webkit-appearance: none;
padding-left: 5px;
padding-right: 20px;
background-size: 14px 14px;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: