css把背景图片拉伸至100%,背景100%
<style type="text/css">
div{
width:100%;
height: 500px;
background-image:url('2.png');
background-size:cover;
filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( sizingMethod='scale' , src='2.png')
}
</style>
<body>
<div></div>
</body>
使用滤镜,其中 sizingMethod="scale" 就是拉伸。