Answers for "remove white space at the below footer"

CSS
0

css remove white space below footer

<body>
    <section>
        This is content of the page
    </section>
    <footer>
        Text of footer
    </footer>
</body>

section {
    min-height: 100vh; /* minus the height of the footer */
}
Posted by: Guest on July-26-2020

Code answers related to "remove white space at the below footer"

Browse Popular Code Answers by Language