2
在我的網站中,我必須使用任何分辨率固定的背景圖像,並且在控制+滾動時不應更改。我使用了下面的CSS。在IE中修復背景 - 任何分辨率
/* CSS style */
img.bg {
/* Set rules to fill background */
min-height: 100%;
min-width: 1024px;
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
}
@media screen and (max-width: 1024px){
img.bg {
left: 50%;
margin-left: -512px; }
}
此代碼在Firefox中工作正常,但背景圖像中IE7瀏覽器萎縮。如何解決此問題。任何人請幫助
你指的是哪個IE版本? – Ham 2010-04-28 06:10:59