我有這樣的CSS:CSS體固定的背景
body
{
background-position: center top;
background-color: rgb(237, 237, 237);
font-size: .85em;
font-family: "Trebuchet MS" , Verdana, Helvetica, Sans-Serif;
margin: 0px auto;
padding: 0;
color: #696969;
width: 1000px;
height: 1200px;
background-image: url('Background.png');
background-repeat: no-repeat;
background-attachment: inherit;
top: 0px;
}
當我最大化窗口,這一切都ok了,但是當我使窗口變小,背景圖像移動。
This is how look in maximizedbrowser window
And this is after change window size
問題的是,它設置爲固定開出DOM元素脫離正常位置,因此'覆蓋'適應身體而不是元素。似乎無法找到修復。 – Carson