我目前正在CSS中使用background-size属性。我把它设置为100%,但是我希望它如果div达到800px的最小高度让它停止调整大小....无论如何我可以强迫它吗?
提前致谢!
#test-bg {
background:url('../images/test_bg.jpg') 0 0 no-repeat;
background-size:100%;
width:100%;
height:1900px;
min-height:800px;
position:absolute;
}
答案 0 :(得分:1)
我通过应用最小宽度来修复它!不管怎样,谢谢:)
答案 1 :(得分:0)
在CSS2中,您可以选择指定min-height
。
请看下面的链接,看看它是否对您有所帮助: http://www.w3schools.com/cssref/pr_dim_min-height.asp