私は次の構造を持っています:
<header></header>
<nav></nav>
<section id="mainContainer">
<section id="innerContainer">
</section>
</section>
<footer></footer>
そして次のcss:
html {
height: 100% !important;
}
body {
height: 100% !important;
}
body header {
min-width: 1280px;
height: 78px;
}
body nav {
height: 41px;
}
body section#mainContainer {
height: 100%;
}
body section div#innerContainer {
height: 100%;
}
body footer {
height: 48px;
}
主な目標は、スティッキーフッターを作成することです。しかし、このようなcss configは、私のページにスクロールを表示するだけです。私はve already tryed all possible variations of making sticky footers, but all of them gave me the same result. What I
間違っています。