Is there a way to position my footer at the bottom of the screen and make it extend to the full width in a responsive manner? https://i.sstatic.net/19lSB.jpg
Custom CSS for Footer:
* {
margin: 0;
}
html, body {
height: 100%;
}
.page-wrap {
min-height: 100%;
margin-bottom: -142px;
}
.page-wrap:after {
content: "";
display: block;
}
.site-footer, .page-wrap:after {
height: 142px;
}
.site-footer {
background: black;
}
.text{
color: white;
}
Footer Component in TypeScript:
const Footer = () => (
<footer className="site-footer">
<p className='text'> APP </p>
</footer>
);
export default Footer;