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 Review card using HTML/CSS

@mohamedballa

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 build a responsive layout and was able to use multiple fonts.

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

when importing the fonts , i could not first figure how to use multiple fonts at the same time. but through trial and error i was able to solve it.

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

Responsive layout, how to control size during different screen size.

Community feedback

MikDra1 6,090

@MikDra1

Posted

I encourage you to use this technique to make the card responsive with ease:

.card {
width: 90%;
max-width: 37.5rem;
}

On the smaller screens card will be 90% of the parent (here body), but as soon as the card will be 37.5rem (600px) it will lock with this size.

Also to put the card in the center I advise you to use this code snippet:

.container {
display: grid;
place-items: center;
}

Hope you found this comment helpful 💗💗💗

Good job and keep going 😁😊😉

1

@mohamedballa

Posted

@MikDra1 Thank you very much This is actually very helpful I have been using media queries for different size screen and margin auto for center

0
MikDra1 6,090

@MikDra1

Posted

@mohamedballa

If you appreciate then please mark the comment as helpful. This makes me write more useful content 😃

0
Hieu Tran 40

@hieutran249

Posted

I think this solution is great. I recommend that the sizes of some components such as the user avatar should be a little bit smaller. Overall, this solution is nice.

1

@mohamedballa

Posted

@hieutran249 yes it need a little improvement Thank you for the suggestions.

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