Home  >  Article  >  Web Front-end  >  How to Position a Footer at the Bottom of the Browser with CSS?

How to Position a Footer at the Bottom of the Browser with CSS?

Barbara Streisand
Barbara StreisandOriginal
2024-10-30 06:05:28719browse

How to Position a Footer at the Bottom of the Browser with CSS?

Positioning Footer at the Bottom of the Browser with CSS

You're facing a common issue where your footer appears in the middle of the browser window. To resolve this, ensure you follow the correct CSS practices.

Solution:

The provided CSS code attempts to use various relative and absolute positioning methods. However, a more straightforward approach is to use the following CSS rules for your footer:

<code class="css">#Footer {
  position: absolute;
  width: 100%;
  bottom: 0;
}</code>

This solution will effectively position your footer at the absolute bottom of the browser window. Note that this method works in both Firefox (FF) and Internet Explorer (IE).

Explanation:

  • position: absolute;: Removes the footer from the normal document flow and allows precise positioning.
  • width: 100%;: Sets the footer width to the full width of the browser window.
  • bottom: 0;: Positions the bottom edge of the footer at the bottom of the window.

Additional Notes:

  • Ensure that your html and body elements have a height of 100% to occupy the entire browser window.
  • Avoid using position: fixed; for the footer in IE as it may not work consistently.

The above is the detailed content of How to Position a Footer at the Bottom of the Browser with CSS?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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