Home > Web Front-end > CSS Tutorial > How Do I Make a Footer Stick to the Bottom of the Page in Twitter Bootstrap?

How Do I Make a Footer Stick to the Bottom of the Page in Twitter Bootstrap?

Barbara Streisand
Release: 2024-11-29 01:45:15
Original
756 people have browsed it

How Do I Make a Footer Stick to the Bottom of the Page in Twitter Bootstrap?

Flushing Footer to Bottom of Page with Twitter Bootstrap

Achieving a footer that seamlessly flushes to the bottom of the page can be a challenge, especially when utilizing responsive design frameworks like Twitter Bootstrap. Despite having a firm grasp on the conventional techniques, some users encounter difficulties when attempting to implement this functionality within a Twitter Bootstrap environment.

It's important to note that with the release of Twitter Bootstrap 2.2.1, this functionality became an integrated feature. For Bootstrap 3.x, it's as simple as adding the ".navbar-fixed-bottom" class to the navbar component:

<div>
Copy after login
Copy after login

For Bootstrap 4.x, use the following code:

<div>
Copy after login
Copy after login

However, to prevent the page content from overlapping with the footer, remember to include the following CSS:

body { padding-bottom: 70px; }
Copy after login

More detailed information can be found in the official Bootstrap documentation: http://getbootstrap.com/components/#navbar-fixed-bottom

The above is the detailed content of How Do I Make a Footer Stick to the Bottom of the Page in Twitter Bootstrap?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template