"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Position a Footer at the Bottom of the Browser in Firefox and Internet Explorer?

How to Position a Footer at the Bottom of the Browser in Firefox and Internet Explorer?

Published on 2024-11-08
Browse:604

How to Position a Footer at the Bottom of the Browser in Firefox and Internet Explorer?

Positioning Footer at the Bottom with CSS

Many developers encounter issues when trying to position a footer at the bottom of a browser window. Despite following various techniques, the footer may appear in the middle instead. Here's a solution to this common problem for both Firefox and Internet Explorer.

CSS Code

The following CSS code will effectively stick the footer to the bottom of the browser:

#Footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

Explanation

  1. position: absolute;: Removes the footer from the normal document flow, allowing it to be positioned independently.
  2. bottom: 0;: Sets the bottom edge of the footer to zero, which positions it at the bottom of the window.
  3. width: 100%;: Ensures that the footer spans the entire width of the screen.

HTML Structure

Ensure that your HTML structure contains a

with the id="Footer" for the footer:
...

Additional Notes

  • Setting position: fixed; for the footer may work for Firefox but not for Internet Explorer.
  • Adjusting the margin or padding of the main content (class="Main") may be necessary to make space for the footer.

By applying these CSS styles, you should be able to successfully position the footer at the bottom of the browser window in both Firefox and Internet Explorer.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3