Is there a way to stop the resizing of my background image using CSS? Currently, I have the background-size property set to 100%, but I would like it to remain at that size once the div reaches a minimum height of 800px. Any suggestions on how to achieve this?
Thank you in advance for any help!
#test-bg {
background:url('../images/test_bg.jpg') 0 0 no-repeat;
background-size:100%;
width:100%;
height:1900px;
min-height:800px;
position:absolute;
}