Design comparison
SolutionDesign
Solution retrospective
Hi, this is my attempt to make responsive websites after relearning CSS. Please let me know if it's responsive to a good standard thanks!
Community feedback
- @vanzasetiaPosted over 2 years ago
Hi there! 👋
For writing CSS, I suggest writing it with the mobile-first approach. So, the initial styling should not be wrapped by a media query. The initial styling is for mobile layout first. After that, use media queries to style the desktop layout.
Some feedback.
- Use CSS to uppercase the text. The uppercased word in the HTML might be spelled by the screen reader (spelled letter by letter).
- I suggest using anchor tags for those "Learn More" buttons. As a user I would expect after I click one of those buttons, I would get navigated to another webpage.
- By default the
body
element has 100% width so I suggest removing thewidth: 100%
.
Hope this helps.
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