Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Drop shadow on top and bottom of element? Please help! Re: Drop shadow on top and bottom of element? Please help!

#95462
dfogge
Participant

i had to do this recently, and the way i accomplished it was by adding inset drop shadows to the areas above and below the main content area.

try something like this:

header {
box-shadow:inset 0 -15px 5px -16px #111;
}
footer {
box-shadow:inset 0 15px 5px -16px #111;
}