したがって、このサイト: http://itec.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%;
}
...しかし、これにより水平スクロールバーが追加されます。スクロールバーを取り除く方法はありますか?ただし、ブラウザーのサイズがコンテンツよりも小さくなった場合でもスクロールバーが表示されるようにしてください。