Submitted over 2 years ago
single price card using css grid and flexbox
@rodrigoandregg
Design comparison
SolutionDesign
Community feedback
- @Bayoumi-devPosted over 2 years ago
Hey Rodrigo, It looks good!...
My suggestions:
- I suggest you put the
Why Us
content into thelist item
to add moresemantics
to your project.
<ul class="why-us-list"> <li>Tutorials by industry experts</li> <li>Peer & expert code review</li> <li>Coding exercises</li> <li>Access to our GitHub repos</li> <li>Community forum</li> <li>Flashcard decks</li> <li>New videos every week</li> </ul>
- I suggest you center the component on the page with
Flexbox
, by giving the parent element<main>
the following properties:
main { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
Hope this is helpful to you... Keep coding👍
Marked as helpful0 - I suggest you put the
Please log in to post a comment
Log in with GitHubJoin 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