所以我在这里使用这种风格将 div 作为背景居中:
#example{
z-index:-1;
width: 950px;
height:100%;
position:fixed;
background-color:#F0F0F0;
background:url(images/main_background_sidebar.png) repeat-y top center;
top: 0px;
left: 50%;
margin-left: -475px;
}
效果很好,它保持居中,但如果页面宽度低于 950 像素,有没有办法阻止它保持居中?例如:如果浏览器窗口只有 800px 宽,则背景图像的左侧会卡在屏幕的左侧。