Design comparison
Solution retrospective
Hi my dear friend
I am trying to improve my responsive skills but have no idea how to apply the right color on the image, any feedback is welcome ^^.
Have a fun day !
Community feedback
- @HassiaiPosted over 1 year ago
Replace <div class="container"> with the main tag to fix the accessibility issues. click here for more on web-accessibility and semantic html
Give the alt attribute in the img a value. The value of the alt attribute is the description of the image. For decorative images like icons, there is no need to give it an alt value, for more on alt attribute Click here.
To center .container on the page using flexbox instead of margin, add min-height:100vh; display: flex; align-items: center: justify-content: center; to the body.
USING FLEXBOX: body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
For the color of the image , give ,picture a background-color of soft violet and the img a width and height of 100%, object-fit: cover, mix-blend-mode: multiply and opacity: 0.8
.picture{ background-color: hsl(); } img{ width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.8; }
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
Marked as helpful1 - @vinumanPosted over 1 year ago
Hello there,
Add the following CSS property to the image.
mix-blend-mode:multiply;
This multiplies the color values of the element with the color values of the background or underlying elements.
Hope this helps.
All the best..
Marked as helpful1 - @0xabdulkhaliqPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
HTML 🏷️:
- This solution generates accessibility error reports due to
non-semantic
markup
- So fix it by replacing the
<div class="container">
with semantic element<main>
to improve accessibility and organization of your page.
I hope you find it helpful ! 😄 Above all, the solution you submitted is great
Happy coding!
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