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
Request path contains unescaped characters
Not Found
Not Found
Not Found

Submitted

I used Flex box and Media queris

@Deepu23456

Desktop design screenshot for the Time tracking dashboard coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

I proud on myself for creating this project as because its CSS is little bit of tricky for me. But i was able to make it this is little achievement for me.

What challenges did you encounter, and how did you overcome them?

I encounter CSS a little bit of tricky and also its little bit of tricky when it comes to responsiveness. But i am glad that i have done the project.

What specific areas of your project would you like help with?

I would like to work with CSS

Community feedback

@0xabdulkhaliq

Posted

Hello there 👋. Congratulations on successfully completing the challenge! 🎉

  • I have a suggestion regarding your code that I believe will be of great interest to you.

CSS 🎨:

  • The attribution elements needs to be placed at the bottom of the screen. By doing so, it will helps us to resemble our solution with exact design image.
  • So let me explain, How you can place the component at bottom with using absolute positioning for attribution.
  • Oops, wait before moving on to placement of element we need to first change the attribution element from div to footer. Because it contains information about the author of the section, copyright data or links to related documents.
  • So the resulted the markup would be,
<body>
  <main>
    <div class="container">....</div>
  </main>
  <footer class="attribution">....</footer>
</body>
  • By moving the attribution outside the main will greatly help us to maintain accessibility standards along with providing easy way to style them!
  • Now you just want to add absolute position for <footer> element to place it in bottom of the page
body {
  position: relative;
}
footer {
   position: absolute;
   bottom: 1em;
}

.

I hope you find this helpful 😄 Above all, the solution you submitted is great !

Happy coding!

Marked as helpful

1

@Deepu23456

Posted

Thanks @0xabdulkhalid for your suggestion i will keep this in my mind for next time.

0

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