
Design comparison
SolutionDesign
Solution retrospective
easy
Community feedback
- @jaspervo91Posted 3 months ago
Hi EnzoCarvalho,
Your code includes multiple
<table>
elements. Try using table rows defined with<tr>
elements instead.For example:
<table> <tr> <th>Calories</th> <td>277kcal</td> </tr> <tr> <th>Carbs</th> <td>0g</td> </tr> <tr> <th>Protein</th> <td>20g</td> </tr> <tr> <th>Fat</th> <td>22g</td> </tr> </table>
You can learn more about the Table element on MDN Web Docs.
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