我目前在 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;
}