試圖讓全尺寸背景圖片:CSS:全尺寸背景圖片
html {
height: 100%;
background:url('../img/bg.jpg') no-repeat center center fixed;
background-size: cover;
}
它顯示有正確的寬度,但高度的背景圖像被拉伸。 我嘗試了各種選項,如
html {
background:url('../img/bg.jpg') no-repeat center center fixed;
background-size: 100% auto;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
}
去除height: 100%
,但沒有一次成功。
這個CSS當你說拉伸,你的意思是圖像的形狀失真,或圖像的頂部和底部被切關閉?你嘗試過哪些瀏覽器? –
圖像的分辨率是多少? – Vucko
一個生動的例子會很棒。 – Omega