7

我需要在 css 中网页的顶部中心放置一个图像。现在,我只是使用background-image:in css 但这将它放在页面的中间。

这是我的代码:

body {
  background-image: url("theimageurlgoeshere"); //The image is 842 x 508
  background-attachment:fixed;
  background-position: center top;
  background-repeat: no-repeat;
}

此外,更改background-position:似乎对网站的结果没有影响。任何帮助表示赞赏。

4

3 回答 3

6

将这些值的排列从 更改center toptop center

background-position: top center;

在 Safari 4、Chrome 和 FF 3.5 中测试

我在测试中使用的代码是:

 body { background: url(./image.png) no-repeat top center; }
于 2010-05-20T23:40:57.740 回答
1

如果你想要它在一行:

body {
  background: url('path') center top fixed no-repeat;
}

更多信息:http ://www.w3schools.com/css/pr_background-position.asp

于 2010-05-20T23:46:50.240 回答
0

如果这不起作用。做保证金:0自动;

于 2013-06-16T14:57:29.890 回答