DEV Community

Chrissie
Chrissie

Posted on • Updated on

 

Footer bottom in GastbyJS

I have been building my portfolio website and choose Gatsby. One problem that I encountered early on was making my footer stick at the bottom of the page. In this article, I'll be sharing how I overcame it.

Note: I used the starter kit Gatsby-starter-default as a starting point.

<div className="site-content">
   <Header siteTitle={data.site.siteMetadata.title} />
   <main>{children}</main>
   <footer>
      © {new Date().getFullYear()}, Built with
     {` `}
     <a href="https://www.gatsbyjs.org">Gatsby</a>
   </footer>
 </div>
Enter fullscreen mode Exit fullscreen mode

First, in the layout.js file found in the component folder, wrap the header, main, and footer element in a div and give it a class. The class name doesn't matter.

.site-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}
Enter fullscreen mode Exit fullscreen mode

Then in the layout.css file found in the same folder, write the following code. This will make your footer stick to the bottom of your page.

Latest comments (1)

Collapse
 
jesusalbertokiz profile image
Jesus Alberto Mora Lozada

Has salvado mi proyecto, eres un sol ♥

16 Libraries You Should Know as a React Developer

Being a modern React developer is not about knowing just React itself. To stay competitive, it is highly recommended to explore the whole ecosystem. This article contains some of the most useful React component libraries to speed up your developer workflow.