Design comparison
Solution retrospective
Good training
What challenges did you encounter, and how did you overcome them?Good training
What specific areas of your project would you like help with?Good training
Community feedback
- @Grimm-NPosted 6 days ago
Great job! I'm absolutely impressed by how responsive the design is! π It looks really smooth across different screen sizes. Here are a few small suggestions to make it even better:
-
Use relative units instead of pixels β Try using
rem
orem
instead ofpx
for better scalability and accessibility. This makes the design more flexible and adaptable for different screen sizes and user preferences (like zooming). π -
Use
clamp
for adaptive font sizes β You can useclamp()
to make your font sizes adjust fluidly depending on the screen width, ensuring the text remains readable on both small and large screens. For example:
font-size: clamp(1rem, 2vw, 1.5rem);
This approach is great for responsiveness! π -
Consider using downloaded fonts β If you're using custom fonts, it's often better to download them (using
@font-face
), instead of relying on web font services. This way, you control the loading speed and avoid dependency on third-party services. π₯
Keep up the great work! π
1 -
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