所以在这个网站上:http: //istec.org 我试图在页脚后面有一个适合浏览器宽度的水色背景,但没有滚动条。我目前使用的解决方案是:
.custom #footer-bg { /* wrapper for the footer */
position: relative;
background: rgb(0, 111, 111);
}
.custom #footer-bg:before, .custom #footer-bg:after {
content: "";
position: absolute;
background: rgb(0, 111, 111); /* Matches the background of the footer's background */
top: 0;
bottom: 0;
width: 1000px;
}
.custom #footer-bg:before {
right: 100%;
}
.custom #footer-bg:after {
left: 100%;
}
...但这会增加水平滚动条。有没有办法摆脱滚动条,但如果浏览器尺寸小于内容,请确保它们仍然出现?