The design I have is a single page but spans probably 4 viewports in height (desktop) the background I’m trying to achieve is a gradient that goes from blue to white and back to blue, the issue is the background stops completely after 100vh is met and then repeats. How do I have it one fluid background?
Start by removing styling from the body.
You’ll place a new div. Position = fixed + full.
Apply your gradient
Make sure your content parent(s) have a z-index higher than the gradient background.
Hey thanks for the help, it works perfectly except that it is position fixed and does not scroll with the page, I would think absolute with top 0 bottom 0 would do the trick but it does not
I can manually set the height to the height of the document but that seems a bit hacky and non responsive.
Ah, I misunderstood what you were going for. For the gradient to span all of your content take all positioning styles off of the gradient div. You can remove all height styling and leave at “auto”. Then place all of your page content and nav inside of that gradient div.