Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • P
    Corina 30

    @Dangerina

    Submitted

    • On my laptop I'm seeing a tiny scroll despite setting the body height to 100vh. Is there a different way to approach this to prevent that?
    • This is also my first project (!!!) so I'm not confident about my git commits. How often/what kind of progress do you get done before a commit?

    Thank you for your feedback :)

    @rtlsalazar

    Posted

    Hi Corina! , The tiny scroll is due to the default 8px margin on the body element; this is included by the browser and has to be manually set to 0px, with: "body{margin: 0;}". By doing that, the scroll disappears. To avoid this kind of problem, it is very common practice to include a "reset.css" file (https://meyerweb.com/eric/tools/css/reset/) that automatically removes the default styles from the browser (including the margins), letting you decide for it.

    Marked as helpful

    2