How i can do it with css (box-shadow and border) How to do it exactly like image.Give me some suggestions please Thanks.
Thanks
asked Jul 5, 2016 at 8:09
Jahid - WordPress Developer
571 silver badge10 bronze badges
-
You could have a look at the following post for ideas as well. stackoverflow.com/questions/8866736/…Riaan van Zyl– Riaan van Zyl2016年07月05日 08:21:39 +00:00Commented Jul 5, 2016 at 8:21
1 Answer 1
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);
Sign up to request clarification or add additional context in comments.
1 Comment
Lööri
Also you can find many tools for that.. example : cssmatic.com/box-shadow
lang-html