Answers
https://developer.mozilla.org/zh-CN/docs/Web/CSS/background-size
background-size: cover;
菲莉丝·艾莉斯
answered 10 years, 2 months ago
CSS3 中的
background-size
可以调整背景图的尺寸。
Lin3W
answered 10 years, 2 months ago
<div id="web_bg" style="position:absolute; width:100%; height:100%; z-index:-1">
<img src="bg2.jpg" height="100%" width="100%" />
</div>
这个答案其实就是我们在做遮罩层的时候衍生出来的,
div
会浮动起来且是自适应的,所以其里面的img标签的
width
和
height
都是继承了
div
的
100%
,也是自适应的。这种是兼容性的写法,若只想在较新浏览器中使用,则可像上面的回答那样,使用CSS3的
background-size
sveoxhy
answered 10 years, 2 months ago