4

我有header元素和 50x50 png 图像。用 css 加载的图像:

#header{
  width: 50px;
  height 50px;
  background: url("/static/img/image.png") no-repeat;
}

页面加载时全部正常显示。当我减小图像附近浏览器窗口的大小时,出现白色背景。如何删除它?

-webkit-appearance: none;

没有帮助

谢谢你。

4

2 回答 2

1

尝试这个

 background: transparent url("/static/img/image.png") center center no-repeat;
于 2013-05-29T13:51:00.030 回答
0

试试这个代码可能是边界问题..

img{border:0 none;}
于 2013-05-29T09:44:56.743 回答