How to get grey background to stretch to the height of the screen?

You can see when I set height of section as “auto”, it doesn’t auto stretch to the height of the screen.

When I try to put min height 100vh, the height is too high. (it doesn’t fit)

How do I get the grey bg of the section to auto stretch to the height of the screen?

Hey @raelyn

You could set app background to grey if other pages have it too.

I think the issue is that you have a header, so you’d have to substract its height to your 100vh min-height.
You can do that by Watching Scroll Position on your header to have access to its height. Then bind a formula to your section’s min-height property. Something like: "calc(100vh - header.height + "px")"
If your header has a fixed height you can even simplify and enter your value directly :slight_smile:

Oo, great solution. It is indeed due to that top menu. I have a question. How do I watch scroll position and get the height of the top nav menu? Could you explain haha

Not quite sure what you meant when you said: "You can do that by Watching Scroll Position on your header to have access to its height. Then bind a formula to your section’s min-height property. Something like: "calc(100vh - header.height + "px")"

Here is a video explain that a bit better :smiley:

Let me know if that solves it

1 Like

OH, I get it now. Thank you so much, that video was very clear and exactly what I needed!

1 Like