私の問題:
1ページデザインしました。ヘッダー、コンテンツ (セクションと脇)、フッター。
フッターとヘッダーは粘着性があります。
コンテンツをページの最後とフッターの上に固定したい。
ガイドしてください。
私の問題:
1ページデザインしました。ヘッダー、コンテンツ (セクションと脇)、フッター。
フッターとヘッダーは粘着性があります。
コンテンツをページの最後とフッターの上に固定したい。
ガイドしてください。
このようなことを暗示していますか。この例では。画面のサイズに関係なく、コンテンツはフッターに固定されます。たとえ 1 行であってもです。
*{
box-sizing: border-box;
}
body, html{
height: 100%;
width: 100%;
margin: 0;
}
body{
display:flex;
flex-direction: column;
}
#container
{
margin: 0 auto;
width:90%;
background-color: white;
border: 2px solid black;
flex-shrink:0;
flex-grow:1;
display:flex;
}
.header,.footer
{
margin: 0 auto;
width:100%;
text-align: center;
height:1.5em;
background-color: white;
border: 1px solid black;
flex-shrink:0;
background-color:green;
color:white;
}
.col {
height:90%;
flex-shrink:0;
flex-grow:1;
margin:0 2% 0 2%;
}
<div class="header">
Header here
</div>
<div id="container">
<div class="col">
test column 1
<p>
Content
</p>
<p>
Content
</p>
<p>
Content
</p>
</div>
<div class="col">
test column 2
<p>
Content
</p>
<p>
Content
</p>
<p>
Content
</p>
</div>
</div>
<div class="footer">
Footer Here
</div>