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; }
Explanation:
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!