Created
January 12, 2022 13:01
-
-
Save sleepless-se/ea92cf417bd6b7136b6d865ad3990e76 to your computer and use it in GitHub Desktop.
Footerを画面下に固定する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div class="SiteWrapper"> | |
<header>...</header> | |
<main>...</main> | |
<footer>...</footer> | |
</div> | |
</body> | |
<style> | |
.SiteWrapper { | |
display: flex; | |
flex-direction: column; | |
min-height: 100vh; | |
} | |
main { | |
flex: 1; | |
overflow-x: hidden; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment