Design comparison
Community feedback
- @beowulf1958Posted about 1 year ago
Congratulations on finishing this project! Your solution to the purple color on the image is quite unique; I have never seen anyone else use filter.
I noticed that your mobile style has the image on the bottom; the design called for the image to move to the top in mobile. I have a suggestion how you can fix this with just 2 lines of code: Inside the media query
.images { grid-row-start: 1; } .text { justify-content: center; align-items: center; text-align: center; grid-row-start: 2; }
You already have the grid working, so just move the image to first position and text to second position! That is the beauty of the grid: you can move items around in your layout.
Hope this helps!
Marked as helpful0@Agus27111Posted about 1 year ago@beowulf1958
Wow, thank you very much for the advice.
Yes, I've just entered this field so there are so many things I don't understand. I really appreciate your advice.
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