我想要页面顶部和页面底部的背景。使用这个 CSS 给了我正确的效果,但它以特定的分辨率将图像剪辑在一起。有没有办法停止剪辑效果?
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;
}