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

Blog Preview with CSS and HTML

Ericโ€ข 70

@esurreal

Desktop design screenshot for the Blog preview card coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


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

I'm most proud that I understood most of what I was supposed to do. Next time I'd be better and faster. I learned a lot.

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

I struggled with the avatar image and the name. Getting those to align properly took me a while for some reason. I eventually settled with what I think looks good.

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

I think I'm pretty good on this one. Maybe some help on why my name isn't inline with the avatar.

Community feedback

Daniel ๐Ÿ›ธโ€ข 44,230

@danielmrz-dev

Posted

Hello there!

Congrats on completing the challenge! โœ…

Your project is looking fantastic!

I'd like to suggest a way to make it even better:

  • Using margin isn't always the most effective method for centering an element.

Here's a highly efficient approach to position an element at the center of the page both vertically and horizontally:

๐Ÿ“Œ Apply this CSS to the body (avoid using position or margins in order to work correctly):

body {
    min-height: 100vh;
    display: flex; 
    justify-content: center;
    align-items: center;
}

I hope you find this helpful!

Keep up the excellent work!

Marked as helpful

0
P
Koda๐Ÿ‘นโ€ข 3,810

@kodan96

Posted

hi there! ๐Ÿ‘‹

If you apply these properties to the body your content should be centered:

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

Other than that it looks really good, congrats!๐Ÿ‘Š

Hope this helped, happy coding!

Marked as helpful

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