0

我有上面的图片在此处输入图像描述

我必须将其设置为覆盖整个页面。我尝试了以下代码。

margin: 0px;
    background: url(../images/common/header/Background_color.png);
    background-repeat:repeat-x;
    background-attachment:fixed;
    background-position:top center; 
    height: 100%;
    width: 100%;
    border: 0;
    display:inline-block;
    background-color: transparent;

但我得到的是这个。 在此处输入图像描述

它没有覆盖整个页面。在底部我得到了空白。有人可以帮我吗?提前致谢。

4

2 回答 2

0

尝试这个 :

background-size: cover;
于 2013-05-10T08:54:27.113 回答
0

改变这个

background: url(../images/common/header/Background_color.png); background-repeat:repeat-x;

对此

background: url(../images/common/header/Background_color.png); background-repeat:repeat;
于 2013-05-10T06:59:56.930 回答