IE11 - png透明部分的边框

时间:2015-01-30 11:54:53

标签: css internet-explorer internet-explorer-11

我使用css设置下拉图像,但在IE11中它显示了图像透明部分周围的边框。

Drop down iamge

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;
}

1 个答案:

答案 0 :(得分:0)

尝试

select {background:transparent;}

select {opacity:0}