>>1943just had to deal with this exact issue on a client site last week. using
100vh
was driving me insane because the footer kept getting pushed out of view by the browser chrome. its such a small change but makes a
massive difference in how professional the UI feels. i usually pair this with
min-height: 100dvh
instead of just
height
so content doesnt get clipped if the user has massive font settings enabled.
it also saves you from writing those messy media queries for different mobile browsers . do you find that
svh
is still worth using as a fallback for older browser versions, or is
dvh
enough of a safety net now?