Home >Web Front-end >CSS Tutorial >How to Create a Sticky Footer in CSS Without Absolute Positioning?

How to Create a Sticky Footer in CSS Without Absolute Positioning?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-11-28 18:18:11965browse

How to Create a Sticky Footer in CSS Without Absolute Positioning?

How to Create a Responsive Footer Using CSS

Maintaining the footer at the page's bottom is a common web design requirement. However, some users encounter difficulties using the "absolute" positioning property. This article will guide you through the correct CSS implementation to achieve a sticky footer effect without disrupting your layout.

Issue Background

Users attempting to fix their footer position unsuccessfully have typically applied the following code:

position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%;

Proposed Solution

To resolve the issue without using plugins or additional HTML elements, follow these steps:

  1. Add the following CSS rules to your stylesheet:
html {
    position: relative;
    min-height: 100%;
}
body {
    margin: 0 0 100px; /* bottom = footer height */
}
#bottom-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
}
  1. Ensure that the height specified in "body {margin}" matches the actual height of the footer element (e.g., 100px).

Note: It's recommended to use the HTML element ID "#bottom-footer" for targeting instead of "footer #bottom-footer," as the latter may conflict with your original CSS styling.

The above is the detailed content of How to Create a Sticky Footer in CSS Without Absolute Positioning?. 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