Design comparison
SolutionDesign
Solution retrospective
Is there any short methods for media queries or some tips for responsive design Constructive criticism is appreciated.
Community feedback
- @ixtkPosted over 3 years ago
- Avoid setting fixed widths/heights. Instead, let the content grow or shrink dinamically
- Avoid setting fixed
font-size
, userem
,em
or other relative unit for that - Use relative units like
em
andrem
for paddings and margins around text. This will ensure that text has enough/appropriate breathing space when font size changes. - Don't use multiple
h1
s in one page - Sections should have
h2
-h6
tags to identify what the it's about - Look into semantic HTML topic, the
h5
you've used should have been ap
tag - Use meaningful class names, unlike
para
you've used
Marked as helpful3
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