Html Tag Stops Being Full Width On Skinny Viewports
My tag stops taking up the full width on skinny viewports (even though the applied green background-color seems to span the full width). This causes my css grid with 1
Solution 1:
just use:
html,body{
height: 100vh !important;
width: 100vw !important;
}
It should do it.
Post a Comment for "Html Tag Stops Being Full Width On Skinny Viewports"