html - Trying to get CSS shadow on right and left sides -
I have a DIV element which I would like to apply a CSS box shadow also, the problem is, I left it only to the left of the element And I want right. I tried to play with
box-shadow: 0 10px # 000; But no matter what I do, he refuses to work. I want shadow to paint 10px and # 000.
Thanks
You must apply it to your CSS.
div {box-shadow: 4px 0 2px # 222, -4px 0 2px # 222; } Here's an example
Comments
Post a Comment