Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inset shadow effect

Tags:

css

How to make this inside shadow effect with CSS?

alt text

So far I got this http://jsfiddle.net/yX26J/. How to apply shadow only left and top?

like image 292
Jeaf Gilbert Avatar asked Jul 17 '26 12:07

Jeaf Gilbert


1 Answers

You can change the offset of the shadow with:

div {
    width:80px; height:110px;
    background:#3183bd;
    -moz-box-shadow: inset 1em 1em 1em -1em #111;
    -webkit-box-shadow: inset 1em 1em 1em -1em #111;
    box-shadow: inset 1em 1em 1em -1em #111;
}

http://jsfiddle.net/ga6cy/4/

like image 106
Vincent Robert Avatar answered Jul 19 '26 02:07

Vincent Robert



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!