我需要在 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:
似乎对网站的结果没有影响。任何帮助表示赞赏。