0

I have a form with orange background and a shadow: form image

and I'm trying to make the shadow with css. the best result I got is here: https://jsfiddle.net/2f903rcr/

box-shadow: 0px 1px 2px 0px #505857, 0px 0px 7px 0px #505857;

Somebody know to do the same shadow in css?

Tomer Aro
  • 175
  • 1
  • 12

1 Answers1

0

I can't see your code and can't understand your image but there is something for you:

  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .3);

https://jsfiddle.net/2f903rcr/3/

a.u.b
  • 1,589
  • 10
  • 25
  • 3
    It is very simple..box shadow will increase from mid to bottom and no shadow on top. You just gave example of how to apply box shadow. – Leo the lion Apr 22 '16 at 11:36