Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • RazvanTSG 150

    @RazvanTSG

    Submitted

    I think I did pretty good. I can't figure out why border-radius didn't work for the image though :(

    Jen Gori 170

    @jengori

    Posted

    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

    0
  • Jen Gori 170

    @jengori

    Posted

    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

    1