Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

106
Views
Footer overlapping content when trying to make it stay at the bottom of the page

I'm trying to make footer on the bottom of the page, but it's overlapping the content. Like this:

enter image description here

body, html , #root

html, body, #root {
height: 100%;
}

#root , body {
 display: flex;
 flex-direction: column;
}

footer

position:absolute,
bottom:0,
width:100%
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

That's because you set position:absolute on the footer. There are simpler ways of fixing your footer at the bottom. Say your project structure is like this, notice there are three direct children inside .app:

<html>
 <body>
  <div id= "root">
    <div class= "app">
      <Header></Header>
      <Content></Content>
      <Footer></Footer>
    </div>
  </div>
 </body>
</html>

All you would need is:

.app {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  /* gap: 3rem; */
}
about 4 years ago · Juan Pablo Isaza Report

0

Maybe this helps you.

body{ height:100vh; margin:0; }

header{ min-height:50px; background:lightcyan; }
footer{ min-height:50px; background:PapayaWhip; }

/* Trick */
body{ 
  display:flex; 
  flex-direction:column; 
}

footer{
  margin-top:auto; 
}
<body>
  <header contentEditable>Header</header>
  <article contentEditable>Content</article>
  <footer contentEditable>Footer</footer>
</body>

If you want to stick to position absolute

body{ min-height:100vh; margin:0; position:relative; }
header{ min-height:50px; background:lightcyan; }
footer{ background:PapayaWhip; }

/* Trick: */
body {
  position: relative;
}

body::after {
  content: '';
  display: block;
  height: 50px; /* Set same as footer's height */
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
}
<body>
  <header contentEditable>Header</header>
  <article contentEditable>Content</article>
  <footer contentEditable>Footer</footer>
</body>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!