我使用css设置下拉图像,但在IE11中它显示了图像透明部分周围的边框。
css代码如下
#select-id:after {
content: '';
position: absolute;
background: url(../images/dropdown-icon.png) 100% 50% no-repeat;
height: 48px;
right: 125px;
width: 50px;
pointer-events: none;
}
答案 0 :(得分:0)
尝试
select {background:transparent;}
或
select {opacity:0}