Jquery 全宽-正常高度BG Img

Jquery 全宽-正常高度BG Img,jquery,html,css,Jquery,Html,Css,因此,我一直在谷歌的所有网页上寻找一些代码,帮助我修复我的伸展宽度背景图像。我正在寻找使我的背景图像适合所有浏览器分辨率宽度,高度必须保持在图像上的高度 到目前为止,我的代码给了我一个全宽的背景,但是没有拉伸图像,所以它是全宽的,但是图像没有移动 body{ background-color:#575c70; background: url('http://i.imgur.com/1MS4u4y.jpg'); height: auto; width: 100%; left: 0; backgro

因此,我一直在谷歌的所有网页上寻找一些代码,帮助我修复我的伸展宽度背景图像。我正在寻找使我的背景图像适合所有浏览器分辨率宽度,高度必须保持在图像上的高度

到目前为止,我的代码给了我一个全宽的背景,但是没有拉伸图像,所以它是全宽的,但是图像没有移动

body{
background-color:#575c70;
background: url('http://i.imgur.com/1MS4u4y.jpg');
height: auto;
width: 100%;
left: 0;
background-repeat: no-repeat;
position: absolute;
}

全宽和恒定高度:

background-size: 100% 1340px;

全宽和恒定高度:

background-size: 100% 1340px;
您还可以使用:

background-size: cover;
您还可以使用:

background-size: cover;
看看这个:看看这个: