尝试使用以下方法获取全尺寸背景图像:
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%
但他们都没有工作。