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

119
Views
how to fixed footer in bottom

how to fixed footer in bottom?

JSX HTML Code

import React from 'react';
import { Card } from 'react-bootstrap';
import './Footer.css';
 const Footer = () => {
    const today = new Date();
    const year = today.getFullYear();
    return (
        <div id='foot'>
            <Card className="text-center bg-dark">
            {/* <Card.Header>Featured</Card.Header> sticky-bottom  */}
            <Card.Body className='blockquote-footer '>
                <Card.Title className='color-white'>Top Gear</Card.Title>
                <Card.Text>
                    <p><small>copyright @ {year} </small></p>
                </Card.Text>

            </Card.Body>
        </Card>
        </div>




    );
};

export default Footer;

JSX CSS Code

 #foot {
    margin-top: 1rem;
    padding: 1rem;
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

when I call this footer component inside the other component footer can not stay at bottom position

I try to fix it but I can not solve it##

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You should create a component looks like below.

<Head/>
{children}
<Footer/>

It is the easiest way to place your footer at the bottom.

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!