I'm trying to get an effect like an inset drop shadow effect in CSS that looks like the following image:

Does any body know how I can get that effect with CSS?
|
I'm trying to get an effect like an inset drop shadow effect in CSS that looks like the following image:
Does any body know how I can get that effect with CSS?
| |||||||||
feedback
|
|
The answer has already been given to you ( The important part is For an explanation of the available options: https://developer.mozilla.org/en/css/box-shadow#Values Be sure to take into account the browser support for | |||
|
feedback
|
|
Have a look at the CSS3 | |||
|
feedback
|
|
The key here is multiple box shadows, a larger darker one inset from the top left and a very subtle shadow below thats slightly brighter than the background. Notice the form of box-shadow is "x-offset, y-offset, blur, color" Learn to use the blur amounts and multiple shadows and you can make some really nice effects. Example style (for display on a background of #222):
| |||
|
feedback
|
|
Here is a link that explains it. | |||||||
feedback
|