I had done this challenge a long time ago, but I ended up forgetting it in my folders I'm in the learning process. So, Ignore my gross mistakes or if the way I approached the problems is weird :")
Marcio Lourenço
@marciolourensAll comments
- @AugustoCesarProgSubmitted about 3 years ago@marciolourensPosted about 3 years ago
Hello!
Use the mix-blend-mode property to add saturation to the image.
The mix-blend-mode CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode
0 - @zylcomSubmitted about 3 years ago@marciolourensPosted about 3 years ago
Hello. You can use the srcset Attribute property in HTML. <picture> <source media="(min-width:650px)" srcset="img_pink_flowers.jpg"> <source media="(min-width:465px)" srcset="img_white_flower.jpg"> <img src="img_orange_flowers.jpg" alt="Flowers" style="width:auto;"> </picture>
reference: https://www.w3schools.com/tags/att_source_srcset.asp
Marked as helpful1