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

Submitted

Clipboard Landing Page Using CSS Flex 💪 and Grid 🌐

@Mr-NotSoCreative

Desktop design screenshot for the Clipboard landing page coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


Hello everyone!! This is my solution to the clipboard landing page challenge. I've used CSS display flex and grid along with other CSS custom properties to build out this landing page. I hope I build out this landing page as close to the design as possible. If there are any mistakes or I missed something let me know in the comment section.

Feedback is welcome ✨

Community feedback

@VCarames

Posted

Hey, great job on this project!

Some suggestions to improve you code:

  • To make your content semantically correct, you want to set up your code in this manner:
    <body>
      <header>
        <section>A history of everything you copy</section>
      </header>

      <main>
        <section>Keep track of your snippets</section>
        <section>Access Clipboard anywhere</section>
        <section>Supercharge your workflow</section>
        <section>Company Logos</section>
        <section>Clipboard for iOS and Mac OS</section>
      </main>

      <footer></footer>
    </body>

The <main> element is used to wrap your main content.

The only time <div> elements are used is if there are no semantically correct tags to wrap your content in.

  • To make you content accessible to your users, it is a best to use rem/em instead of px for your CSS property values. For media queries, I definitely suggest using em for them. By using px your assuming that every users browser (mobile, tablet, laptop/desktop) is using a font size of 16px (this is the default size on browser). Em's will help with users whose default isn't 16px, which can sometimes cause the your content to overflow and negatively affect your layout.

Sources:

https://betterprogramming.pub/px-em-or-rem-examining-media-query-units-in-2021-e00cf37b91a9

https://uxdesign.cc/why-designers-should-move-from-px-to-rem-and-how-to-do-that-in-figma-c0ea23e07a15

Happy Coding!

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord