背景大小:封面; IE6+ 的替代品
我需要快速修复 body{background-size:cover;}
以在 IE6+ 中工作。最好的方法是什么? JavaScript/jQuery,或一些粗略的 CSS2 技巧,这意味着我必须将图像放在页面元素中,而不仅仅是放在 CSS 中。
I need a quick fix for body{background-size:cover;}
to work in IE6+. What is the best way to go about it? JavaScript/jQuery, or some sketchy CSS2 tricks, meaning I will have to put the image in a page element instead of just in the CSS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 IEFilter。请参阅本文。
You can use IEFilters. See this article.
如果必须这样做,最简单的方法似乎是使用高度和宽度均为 100% 的绝对定位图像。然后使用 z-index 将其余内容放在图像顶部。
If you must do it, it would seem the easiest way would be to use an absolutely positioned image with a height and width of 100%. Then use z-index to get the rest of the content on top of the image.