:: krowemoh

Thursday | 26 DEC 2024
Posts Links Other About Now

previous
next

How to Make a Page 100vh

2023-07-23
html, snippets

A quick snippet to make a full web page. This uses flexbox.

<html>
    <body>
        <header>Header</header>
        <main>
            <aside>Sidebar</aside>
            <article>Main Content</article>
        </main>
        <footer>Footer</footer>
    </body>
</html>

<style>
html,
body {
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
}
header { }
main {
    display: flex;
    flex: 1;
}
article { flex: 1; }
footer { }
</style>