Design comparison
Solution retrospective
Able to complete Project Under 3 hours
What challenges did you encounter, and how did you overcome them?To make responsive Website
What specific areas of your project would you like help with?How I can able to provide gap between the nutrition table listed down.
Community feedback
- @JEWebDevPosted 4 months ago
Hello! Great job!
Regarding your question about how to put a gap between the nutrition table here are my tips:
1. If you want to put the gap between the
<p></p>
element and the table you can give all the elements inside the nutrition div a gap of 1rem. Like this:.nutrition{ display: flex; flex-direction: column; gap: 1rem; }
2. If you want to put a gap under the table you could give the container a padding bottom of 2rem. Like this:
.container{ padding-bottom: 2rem; }
I hope this helps you with that. Keep up the good work!
0 - @d0t666Posted 4 months ago
I see a big difference compared to the design. Especially in terms of size.
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