Design comparison
SolutionDesign
Community feedback
- @Cyrus-Akwaboah-EmmanuelPosted about 2 years ago
Congrats on finishing the project but it has an issue. It looks good on desktop but not on mobile. It's not responsive. To make it responsive, you can use
display: flex;
on desktop mode and useflex-direction: column;
on responsive mode. You could also usedisplay: grid; grid-template-colums: repeat(2, 1fr);
to make it responsive on mobile.And in your HTML, the
<strike>
element is obsolete. You should usetext-decoration: line-through;
in css to strike a word.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