How can I prevent clipping of 2 backgrounds while using the CSS property Contain?

ensuggizele

New Member
I want a background at the very top of the page and at the very bottom of the page. Using this CSS gives me the correct effect but it clips the images together at certain resolutions. Is there a way to stop the clipping effect?\[code\]body{position:static;background-image:url(images/header.png), url(images/footer.png);background-size:contain, contain;background-position:center top, center bottom;background-repeat:no-repeat, no-repeat;}\[/code\]
 
Back
Top