Submitted 4 months ago
Responsive Perfume card using HTML and Css(SASS)
@DoneWithWork
Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
- Writing responsive css that scales quite well
- Looks very close to the design
- Ensuring the design looked all right
- Making sure responsive design look good + media queries
- How can I improve my Css
- should I make use of clamp() ?
- any other tips and trickes, really appreciate
Community feedback
- @MahmoodHashemPosted 4 months ago
Hello there! šš½āāļø
Well done on completing the challenge! ā
I must say, your project looks fantastic!
Here's a helpful suggestion for you:
š When dealing with different versions of the same image, consider using the <picture> tag.
This can ensure that the appropriate image loads on the user's device, which can save bandwidth and improve performance.
For instance:
<picture> <source media="(min-width: 768px)" srcset="{desktop image path here}"> <img src="{mobile image path here}" alt="{alternative text here}"> </picture>
Explanation:
- The <source> element specifies the image source and the media query that determines when this source should be used. In this case, the desktop image will be used when the screen width is at least 768 pixels.
- The <img> element is the fallback option for browsers that don't support the <picture> element. It specifies the mobile image source and the alternative text that will be displayed if the image cannot be shown.
I hope you find this tip valuable!
Keep up the excellent work!
0
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