Container
<style>
body {
margin: 0;
padding: 0;
}
.wrapper {
min-height: 100vh; /* 画面全体の高さを確保 */
display: flex;
flex-direction: column;
}
.content {
flex: 1;
background-color: yellow;
}
.footer {
background-color: green;
height: 50px; /* footerの高さ */
}
</style>
</head>
<body>
<div class="wrapper">
<div class="content">
Container
</div>
<div class="footer">
Footer
</div>
</div>
</body>