2色が半分にカットされた背景があります。ページにスティッキー フッターがあります。
これを行うことができ、それでもスティッキーフッターを維持できるより良い方法はありますか? 私はいくつかの調査を行いましたが、それはすべてスティッキーフッターに影響します.
* {margin:0;}
html {position: relative; min-height: 100%; background:#F6E038;}
body {margin: 0 0 100px;}/* bottom = footer height */
.footer{
position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%; background:gray;
}
<body>
<div id="container"></div>
<div class="footer"></div>
</body>