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.
Joseph Morad
@D4R0MAll comments
- @Traveller00007Submitted over 1 year ago@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 - @shantanufsdSubmitted almost 2 years ago
I had some difficulties while working on this project. One of the main challenges was understanding and implementing flexbox to properly align and position the elements on the page. However, through this project, I was able to learn and understand the different properties of flexbox, and was able to use it to create a visually appealing and responsive design. It was a great learning experience and I'm excited to apply this knowledge in my future projects.
@D4R0MPosted almost 2 years agoGreat job on tackling the challenge of understanding and implementing flexbox in this project. Your efforts have paid off as the design is visually appealing and responsive. Keep up the good work and keep using your new knowledge in future projects
1