I have an element that has inset box shadows, but I want the shadow on only the top.

Is there no way to set only the top shadow? Do I have to resort to creating additional elements to overlay the side shadows?

Thanks

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

This is technically the same answer as @ChrisJ, with a few more details on how to make box-shadow do your bidding:

for reference the * items are optional:

box-shadow: <inset*> <offset-x> <offset-y> <blur-radius*> <spread-radius*> <color*>;

The <spread-radius> needs to be negative <blur-radius> (so that none of the other blurred sides show up), and then you need to bump the <offset-y> down by the same amount:

box-shadow: inset 0 20px 20px -20px #000000;

It will give you a single gradient band across the top of the element.

link|improve this answer
feedback

box-shadow offsets the shadow by a given amount in each direction. So you need x-offset to be 0, and y-offset to be something negative.

Additionally, you have to play with the blur-radius and spread-radius so that the shadow is not visible on the left and right sides.

Example:

box-shadow: #777 0px -10px 5px -2px;

See the description on the Mozilla Developer Network.

link|improve this answer
No, that doesn't work. the offsets are x and y not left and right. – Mark Jan 21 '11 at 8:00
I didn't say that: x-offset is the horizontal offset; y-offset is the vertical offset. So to have the drop shadow at the top, you need to have y-offset < 0. – ChrisJ Jan 21 '11 at 15:10
@Mark it does work if you understand how to use <spread-radius> – zzzzBov Jan 21 '11 at 20:02
Evidently you're right, sorry I did not understand your answer. My apologizes. – Mark Jan 22 '11 at 7:33
feedback

A better way would be using a background gradient, here are both side to side.

http://jsfiddle.net/wh3L8/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.