I cannot find any examples of how to do this, but how can I add a box shadow only to the top and bottom of an element?
feedback
|
|
As Kristian has pointed out, good control over z-values will often solve your problems. If that does not work you can take a look at CSS Box Shadow Bottom Only on using overflow hidden to hide excess shadow. I would also have in mind that the box-shadow property can accept a comma-separated list of shadows like this:
This will give you some control over the "amount" of shadow in each direction. Have a look at http://www.css3.info/preview/box-shadow/ for more information about box-shadow. Hope this was what you were looking for! | |||
|
feedback
|
|
Okay, this is my very first answer so please be nice! After some experimentation I found that a fourth value in the line controls the spread (at least in FF 10). I opposed the horizontal offsets and gave them a negative spread. Here's the code:
This works perfectly for me! | ||||
|
feedback
|
|
essentially the shadow is the box shape just offset behind the actual box. in order to hide portions of the shadow, you need to create additional divs and set their z-index above the shadowed box so that the shadow is not visible. If you'd like to have extremely specific control over your shadows, build them as images and created container divs with the right amount of padding and margins.. then use the png fix to make sure the shadows render properly in all browsers | |||||
feedback
|
|
I've played around with it and I think I have a solution. The following example shows how to set Box-Shadow so that it will only show a shadow for the inset top and bottom of an element. Legend: insetOption leftPosition topPosition blurStrength spreadStrength color Description Solution
| ||||
|
feedback
|