Help plz CSS (box shadow) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help plz CSS (box shadow)

In this program box-shadow property is not working(on class child-one). I know that it is because of clip-path property. So help me to give that box(child-one) a shadow with original shape. If i can't use box-shadow with clip-path property then how to achieve that shape with box shadow https://code.sololearn.com/WlLCJ72ad7v0/?ref=app

2nd Apr 2020, 11:09 AM
Divesh Aggarwal
Divesh Aggarwal - avatar
1 Answer
+ 2
A workaround is to make an identical element below the targeted element, with some shift and maybe little zoom to be the explicit shadow element rather than an implicit one (under the hhod the box-shadow property create elements to render it). Add: <div class="child-one c1-shadow"></div> in your html, just before your actual 'child-one' element, and these to the css: .c1-shadow { background:black; opacity:.3; transform:translate(5px,10px) scale(1.01); }
2nd Apr 2020, 12:35 PM
visph
visph - avatar