Recipe Page Using Only CSS Flexbox for Responsiveness

Solution retrospective
I would appreciate any suggestions for my code.
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@BaraKalvo
Hi, nice visual styling! :-) Just a small note: since the section Nutrition displays nutritional values in two columns and even refers to a 'table' in the text, it might be more semantically appropriate to use an actual <table> element. That way, screen readers can better understand the data structure. Here is an example of how it could look:
<table> <tbody> <tr> <th scope="row">Calories</th> <td>277kcal</td> </tr> ...
- @LelloX-Dev
Good job!!
the only few things i can notice is the headers that are a bit too bold and the padding-left on the lists wich is not quite right.
but aside those little things, it looks very good
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