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
|
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
| |||
|
feedback
|
|
This is technically the same answer as @ChrisJ, with a few more details on how to make for reference the * items are optional:
The
It will give you a single gradient band across the top of the element. | ||||
|
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:
See the description on the Mozilla Developer Network. | |||||||||
feedback
|
|
A better way would be using a background gradient, here are both side to side. | ||||
|
feedback
|