Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Layout Basics Getting Started with CSS Layout Creating a Sticky Footer

guram dgebuadze
seal-mask
.a{fill-rule:evenodd;}techdegree
guram dgebuadze
Front End Web Development Techdegree Student 4,122 Points

sticky footer

When subtracting footer height to 100vh do we also need subtract footer margin? I only needed to subract bottom margin, not top margin of the footer. is this right way?

2 Answers

Aaron Mckenzie-Hunte
Aaron Mckenzie-Hunte
10,741 Points

You should only be subtracting the total number of pixels for your footer. You do not subtract top/bottom margin independently.

you can use the position : fixed with bottom:0

<html> <head> <style> .test-css{ height: 50px; width: 100vw; background: red; position: fixed; bottom: 0; }

        .empty-div{
            height: 150vh;
            width: 100vw;
            background: green;
        }
    </style>
</head>
<body >
    <div class="empty-div">sssss</div>
    <div class="test-css">test</div>
</body>

</html>