3-column preview card component using HTML, CSS and Flexbox
Design comparison
Solution retrospective
Hello everyone.
This is my second challenge and my first try on this, I had an estimated time of 3 hours but at the end it was only 2 hours doing the project, anyways, with practice I'll improve that skill :D.
Any feedback you have, please post it :D.
Cheers and happy coding :D.
Community feedback
- @vanzasetiaPosted over 3 years ago
πHi Ivan Holguin! My name is Vanza!
π Congratulations for finishing this challenge, especially you have a time estimate, which is one of the skill that you need as a developer.
I have some feedback that will improve this solution:
- Instead of using
button
elements, I would recommend to use anchor tag (<a></a>
), since if it is a real website, you want that learn more to go to another page. This is just preference thought, but you get the point. - Don't use
*
universal selector forfont-size
purposes, since it is mean all elements including html element. It will sometimes cause a serious issue, so for instance, let say you set on your css something like this:
* { font-size: 100px; }
- That means,
1rem
is equal to100px
and also on any elements, such asa
,button
,li
will be100px
font-size. - Try to leave the default font-size as it is, since it will allow the user to change their font-size based on their browser settings.
That's it! Hopefully this is helpful!
Marked as helpful1@AscecentPosted over 3 years ago@vanzasetia Thank you so much for the feedback, very helpful :D
0 - Instead of using
- @Worsnop96Posted over 3 years ago
It's really good at the first look, but there are many things maybe u can implement diferent. Stop using article instead of a single div or sections. Ur css is amazing maybe u can do it better with responsive but it's just practicing. Congrats
Marked as helpful0@AscecentPosted over 3 years ago@Worsnop96 Thank you for the feedback, appreciate it, I'll have in mind your suggestions in future projects :D.
0
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