0

我正在尝试编辑背景,使其保持居中。但是,每次我调整窗口大小以说更小的尺寸来测试它时,图像都会越来越向左移动。我尝试了其他代码,但它们最终缩小了背景。如果我在另一台计算机上查看我的页面,图像也会偏离中心。:(

<style>
html, body {       
margin: 0px;    
background-color: #000000;
background-image: url('http://i.imgur.com/zwbnaPk.jpg');
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>

无论窗口大小如何,我都希望它看起来像这样居中。虽然在这张照片中它有点偏离,但你明白我的意思。

http://i.stack.imgur.com/iN5BR.jpg

4

1 回答 1

0

首先...背景上的黑色中心部分不在中心,其次,您可以使用更少的 CSS 完成相同的结果

html,
body {    
  background: #000 url('http://i.imgur.com/zwbnaPk.jpg') center no-repeat;
  background-attachment: fixed;
  margin: 0;
}
于 2013-09-15T03:25:59.957 回答