代码:
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的东西?