1

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>
4

1 に答える 1

1

body と content の間に div を追加するだけです。これはかなりうまくいきます。

#red{position:fixed; background:red; width:50%; height:100%; z-index:-1}

<div id="red"></div>
于 2013-04-10T12:52:04.763 に答える