body section {
/*...*/
width: 100vw;
height: 100vh;
Issue
setting the width and height with vh and vw instead of % makes this setup work incorrectly under everything that isn't intended to be the size of the screen.
Also, using view-port measurements for the sections allows a slight horizontal scroll, which is annoying to look at (and drops page rank)
Where?
on line
12
,13
in./styles.css
Issue
setting the width and height with
vh
andvw
instead of%
makes this setup work incorrectly under everything that isn't intended to be the size of the screen.Also, using view-port measurements for the sections allows a slight horizontal scroll, which is annoying to look at (and drops page rank)