1

所以我一遍又一遍地在谷歌上的所有页面上寻找一些代码来帮助我修复我的拉伸宽度背景图像。我想让我的背景图像适合所有浏览器分辨率的宽度,高度必须保持在图像上的高度。

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

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

2 回答 2

1

您还可以使用:

background-size: cover;
于 2013-08-24T22:39:29.127 回答
0

全宽和恒定高度:

background-size: 100% 1340px;
于 2013-08-24T20:36:54.380 回答