Home › Forums › JavaScript › Setting a Div height to the window viewport size › Reply To: Setting a Div height to the window viewport size
May 21, 2015 at 4:47 am
#202652
Member
Actually, I wouldn’t recommend a width of 100vw as it doesn’t account for scrollbars
div {
width = 100%;
height = 100vw;
}
is preferred I believe.