0

How i can do it with css (box-shadow and border) How to do it exactly like image.Give me some suggestions please Thanks.

See image here please

Thanks

  • You could have a look at the following post for ideas as well. http://stackoverflow.com/questions/8866736/css-speech-bubble-with-box-shadow – Riaan van Zyl Jul 05 '16 at 08:21

1 Answers1

3

Add this to your divs css

-webkit-box-shadow: 0px 0px 121px -17px rgba(0,106,148,1);
-moz-box-shadow: 0px 0px 121px -17px rgba(0,106,148,1);
 box-shadow: 0px 0px 121px -17px rgba(0,106,148,1);
-webkit-box-shadow: inset 0px 0px 103px -17px rgba(0,179,255,1);
-moz-box-shadow: inset 0px 0px 103px -17px rgba(0,179,255,1);
 box-shadow: inset 0px 0px 103px -17px rgba(0,179,255,1);
Lööri
  • 178
  • 8