Design comparison
SolutionDesign
Solution retrospective
These are my questions:
- How can I make the responsivity better?
- How can I replace the Fixed sizing with dynamic size?
- How to style the Overlay properly?
Community feedback
- @NathanRayMPosted about 1 year ago
Hello,
Really nice job! I have a suggestion for the image that may be helpful to you. Instead of using the overlay, in CSS You could try setting the background color to the container that the image is in. Then, add the mix-blend mode to your image in CSS and set it to multiply and adjust the opacity.
Example:
.image-container{ background-color: hsl(277, 64%, 61%); } img{ mix-blend-mode: multiply; opacity: 0.75; }
Marked as helpful0@hady68Posted about 1 year ago@NathanRayM Thanks a lot! This property completely skipped my mind!
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