How do I add a translucent purple colour over the image in my output? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I add a translucent purple colour over the image in my output?

Please help me to insert a translucent purple colour over the image in my output. Suggest the updated code Thank You! https://code.sololearn.com/WA20A11a1a11/?ref=app

1st Aug 2021, 7:03 AM
Yusuf Ansari
Yusuf Ansari - avatar
2 Answers
+ 3
Add the following css class to the image element: .translucent { -webkit-filter: opacity(30%); filter: opacity(30%); } https://code.sololearn.com/WTuFtPEvKze3/?ref=app
1st Aug 2021, 7:25 AM
Calviղ
Calviղ - avatar
+ 1
You can achieve it by using two blocks inside container as layers. First layer is img Last layer in front is just div with as same as IMG sizes. All you need is just: #img{ z-index: 15; display:block; position: relative; width:100%; height:100%; } #layer{ z-index: 16; display: block; position: absolute; width:100%; height:100%; }
1st Aug 2021, 7:10 AM
Shadoff
Shadoff - avatar