您可以使用单独的元素来解决此问题,
position: fixed并且确实有效!
HTML:
<div id="Background"></div><div id="Content"></div>
CSS:
#Background { background: #000 url("img/Background.jpg") no-repeat 50% 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1}


