@romariobarbosaSubmitted almost 2 years ago
I was unable to color the image using CSS. So I decided to color in an external software.
How can I do this using CSS?
I was unable to color the image using CSS. So I decided to color in an external software.
How can I do this using CSS?
You create an overlay and place it using absolute positioning also setting opacity to make it transparent E.g .overlay{ width:70%; background: pink; height: 30vh; top:20px; left:20px; opacity: 0.2; }
you can also center an element vertically and horizontally using margin: auto.
Nice solution and keep building