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

  • 2trill2code• 70

    @2trill2code

    Submitted

    • Are there better ways to do a simple CSS reset?
    • Is there a better way to vertically and horizontally centre a div?
    • How was the HTML? Was it semantic enough? How about the class names were they also semantic?
    • Should all text type elements p, h1 etc. have class names?
    • Is it a good practice to specify something like h3 compared to .container h3 if you know that one h3 will be on the page?
    myrh• 100

    @myrhisyoinked

    Posted

    I prefer to use this method to center container vertically & horizontally

    body {
      display: grid;
      place-content: center;
      margin: 0;
      min-height: 100vh;
    }
    
    1