0

代码:

html {
    background: url("/_images/back.png") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

使用它我可以完美地显示图像,但整个图像不会从顶部显示。如果这是在一个 div 中,我可以正确显示它并通过 margin-top 进行控制,但是使用 html 我会受到限制,除非还有其他东西。

如何显示整个图像?有没有类似于margin-top的东西?

4

2 回答 2

1

background属性是CSS 的一些背景属性的简写。其中之一是可以在, , ,background-position等中持有top, center, bottom, orleftrightor 值的位置...%pxemcm

您不需要为此目的使用 div。

因此,在您的情况下,您可以尝试background: url("/_images/back.png") no-repeat top left fixed;.

于 2013-07-12T20:05:17.973 回答
0

你试过body标签吗?你也可以试试yahoo css reset

于 2013-07-12T20:02:26.050 回答