Design comparison
SolutionDesign
Solution retrospective
i would be glad for any feedback and help on how to set the mobile view with media query thank you
Community feedback
- @darryncodesPosted over 3 years ago
Hi Ibrahim,
Good effort, looks pretty close to the design.
Try setting
flex-direction: column;
to your.strong
class with a media query. You'd need to set theorder: 1;
property on the image<div>
for it to be displayed before the content too (you'll need another class on the flex-child for this to work).@media only screen and (max-width: 600px) { .strong { flex-direction: column; } }
Marked as helpful1
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