@correlucas
Posted
👾Hello Robert Gatt, Congratulations on completing this challenge!
I've just opened your live site and I can say that you did a great job putting everything together! There's some tips to improve your solution.I saw that you’ve used flexbox
to place the content and create the layout.
I think the best way to build this component with two columns is by using GRID LAYOUT
since it is simpler to manage the columns and then create the media query for mobile. Here’s the steps to create it with grid
create the main block to hold all the content (you can use <main>
to wrap), set its width
as max-width: 900px
(it's the container size) and display: grid
/ grid-template-column: 1fr 1fr
(this means that your component will have two columns with 50% of the container width each thats 450px). To manage the column with the text use flexbox and gap
to give it the spacing between the texts or use padding-bottom
to separate them.
Then to create the mobile version, all you need to do is to change the container flow vertically with grid-template-column: 1fr
.
✌️ I hope this helps you and happy coding!
Marked as helpful
@RobertGatt
Posted
@correlucas thank you for your detailed message and your advice, much appreciated! I will keep that in mind.
@correlucas
Posted
@RobertGatt Then say me if was useful Robert. Keep it up =)