我的背景图片非常大(2000x2000像素)
我还有一个width: 100%
和dynamic height
的div,它取决于其中的内容。我应该如何使这个背景水平适合这个div并在从IE7开始的所有IE浏览器中垂直重复?
<html>
<body>
<header/>
<div class="content" style="width: 100%">
Some dynamic contant from DB
</div>
<footer/>
</body>
</html>
对于其他支持css3的浏览器,我使用过:
.content{
background: url(../image.png);
background-size: 100%;
background-repeat: repeat-y;
}
我看到了一些建议,为IE浏览器使用filter
css属性,但它可以横向和纵向扩展,所以它不是我想要的。
任何建议(css,js,hacks)我怎么能让它工作是非常受欢迎的。