Static website using HTML and CSS

Solution retrospective
Please let me know how to use flexbox to make tables.I used tables for the bottom part.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @kyusufm
for the table part:
<div class="row"> <div class="column"> <h2>Column 1</h2> </div> <div class="column"> <h2>Column 2</h2> </div> </div>
for the row styling, you can add
border-bottom: 1px
to show the border anddisplay:flex
on how to display contentand in this case we can set the column width to 50%
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