Design comparison
Solution retrospective
Help me improve my code. It makes me 2 days to complete this because of image and color blending but yet i am not able to make it prefect according to design so help me to understand more about this image and color blending.
Community feedback
- @D4R0MPosted over 1 year ago
CSS - Code Organization: Try to organize your CSS rules in a logical order. This makes your code easier to read and maintain. You can follow an order like:
- Global styles
- Typography
- Layout
- Components
- Utilities
- Media queries
CSS - Media Queries: When you're working with media queries, try using rem units instead of px. This makes your design more consistent across different devices and user settings. So you can change your media query to:
@media screen and (min-width: 23.5rem) { ... }
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