<body>
<div class="content">
<header>
ヘッダ
</header>
<main>
コンテンツ
</main>
</div>
<footer>
フッタ
</footer>
</body>
html {
height: 100%;
}
body {
margin: 0;
padding: 0;
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
}
header {
width: 100%;
background: #ccdd33;
}
footer {
width: 100%;
background: #44aa33;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.