@TomasScerbakSubmitted about 3 years ago
I just could't swap the columns with grid areas :(
I just could't swap the columns with grid areas :(
Hi @TomasScerbak,
If you want to swap elements from columns in a grid, you can use the css line "order" (https://developer.mozilla.org/en-US/docs/Web/CSS/order) just like you can do in flexbox.
Personally for this challenge, I used flex display and changed the order of the card content only for lower width screens, you're free to check my solution if you're stuck.
And one more thing, I recommend you use the css line "object-fit" (https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) for your image so it can fill its parent div.
Hope this can be of help.