My second project on Frotend Mentor

Solution retrospective
Hello everyone.
I am a kid in 7th grade trying to learn code.
I finally uploaded my second project!!!!!! ^^
(On my last project APG helped me, but this time I did this challenge by myself)
I'm also not a Pro at coding so I'm expecting a lot of correction! 😆
Feedback will be appreciated!!!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @tesla-ambassador
Hey Burrito Doggie! I am happy that you have finished your second project all on your own! 🥳 the accessiblity issues have already been addressed by @TheCoderGuru. Your CSS is much better seeing that you have obtained a clearer understanding of flex! I just have a few tips to point out.
- You could consider adding a padding around your card component instead of giving all those paragraphs margins therefore they won't cling onto the walls of their parent container (the card).
- Incase you apply align-self: center and it doesn't work, try setting a height attribute for the parent component of the items you would want to center. In your case, you can just wrap the card into a main tag like this:
Marked as helpful - @shashreesamuel
Great job completing this challenge
Keep up the good work
Your solution looks great however I have some recommendations regarding the design aspect
- The title and the description are supposed to be a heavier font weight, I recommend rechecking the
style-guide.md
file to be sure.
In terms of your accessibility issues
- Document should have one main landmark, this is caused by a semantic
<main
tag not being present in your markup, simply wrap all the content between thebody
element within main tags since it will identify that a main content exists thus resolving all the errors.
In terms of your code, I think that the paragraph element for the title should be a
h1
since it's like a heading in the card. This will resolve your second issue where your document needs a level one heading.Read more on html semantics.
Hope this helps
Cheers
Marked as helpful - The title and the description are supposed to be a heavier font weight, I recommend rechecking the
- @brasspetals
Hi Alyssa! 👋
It’s so awesome to see you finally submit another solution! Sorry I’m a bit late to comment (been ill, but better now!). You’ve already gotten some great advice from Tesla Ambassador & Shashree. I agree that instead of the two margins on the image, you could simply add
margin: 15px
to the card, and then add any extra needed margin/padding for the text to the.paras
div. Semantically the first paragraph should be some sort of heading (h1, h2, etc.) rather than ap
tag, as Shashree already mentioned.The only "new" piece of advice I have is typically it's best not to have a set height for elements, letting the content determine height instead. This helps to avoid overflow issues. For example, try adding more text to the second paragraph, and you'll see that the text will soon overflow the card. However, if you remove the
height
from the card or switch it tomin-height
, the card will expand with the text.Again, great to see you submit another solution and looking forward to the next one! 😄
Marked as helpful
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