Home > Web Front-end > CSS Tutorial > Why Doesn't My CSS3 Gradient Background Stretch to Full Window Height?

Why Doesn't My CSS3 Gradient Background Stretch to Full Window Height?

Linda Hamilton
Release: 2024-12-09 10:55:11
Original
883 people have browsed it

Why Doesn't My CSS3 Gradient Background Stretch to Full Window Height?

Gradient Background Stretch Issue in CSS3

Problem:

Despite setting a gradient background for the element using CSS3 gradients, the gradient height remains fixed at the height of the content, repeating itself to fill the remaining window space. This behavior occurs in both WebKit and Gecko browsers.

Solution:

To force the gradient to stretch to the height of the window, apply the following CSS:

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
Copy after login

Explanation:

  • html and body heights are set to 100%, forcing them to fill the entire window height.
  • margin: 0; on the body removes any unwanted margins.
  • background-repeat: no-repeat; prevents the gradient from repeating.
  • background-attachment: fixed; fixes the gradient's position, ensuring it remains stationary as the window is resized.

This solution ensures that the gradient stretches vertically to fill the entire window height, without repeating or disrupting the page layout.

The above is the detailed content of Why Doesn't My CSS3 Gradient Background Stretch to Full Window Height?. 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