0

我在我的网站上设置了背景图片,在某些浏览器中,背景图片中有灰色块。我该如何解决这个问题?

网站:http ://haptotherapiemris.nl/

这是我的CSS代码:

.main {
margin: 0 auto;
background: transparent url(http://dansolution.nl/klanten/background/bg.jpg) repeat-y                center top;
width: 1000px;
min-height: 1000px;
text-align: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
4

1 回答 1

0

如果您指的是 bg 图像左右两侧的灰色...那么您可以将其从 body { css 文件中删除。

body {background-color:#595959; ...... }

成为

body {background-color:#ffffff; ..... }
于 2013-10-20T14:07:30.487 回答