Search code examples
htmlcssborderbox-shadow

How i can make it wiht css3?


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


Solution

  • 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);