
Jen Gori
@jengoriAll comments
- @RazvanTSG@jengori
If you set the border-radius property for the image rather than the div that the image is contained in, this should solve your border-radius problem.
Marked as helpful - @vinuman@jengori
I also struggled with the color filter on the image when I completed this challenge. In the end, I used the CSS property mix-blend-mode on the image, and set the background color of the div that the image is contained in to the color that I wanted for the filter. So something like:
.image-div { background-color: hsl(277, 64%, 61%); }
.image { mix-blend-mode: multiply; }
Marked as helpful