Is it possible to apply 2 box-shadows to a HTML element at once? I am trying to apply both an inner(inset) & outer box shadow.
This gives the effect a blurred inside of the element & then just a normal outer shadow.
For eg:
box-shadow: inset 5px 5px #000000;
box-shadow: -1px 5px #FF00FF;
Yes.
You can simply do something like:
A working example.