i'm trying to use a drop shadow to make it look like one div (the header) is "above" another. my problem is that the "middle" div is covering the drop shadow. i tried using z-index to put the header div about the middle div, but it's not working (the shadow is still being covered). when i put a break between the divs, i can see the shadow and therefore i know that part of the code is working properly. i have the following html code:

<div id='portal_header_light'>
<img src="Home.png" height="32px" \>
<img src="Wrench.png" height="32px" \>
</div>
<div id='middle'></div>

and this css:

#portal_header_light {
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px; text-align:center;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    padding: 0px 3px 0px 3px;
    background: -moz-linear-gradient(center top, #999999 0%,#ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #999999),color-stop(1, #ffffff));

    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);

    z-index:5;
}

#middle{
    height:308px;
    background-color:white;
    z-index:-1;
}

any ideas? thanks.

link|improve this question
Hi vee, I found your code useful for my project. How could I make it cross-browser? as it dosn't work in IE8, but in FF and Chrome yes. regards – Samad Feb 19 '11 at 10:50
feedback

3 Answers

up vote 9 down vote accepted

z-index works only on absolute or relative positioned elements. Try to give your div #middle a position:relative.

link|improve this answer
easy fix, thanks! – vee Jul 15 '10 at 19:16
You're welcome :) – gearsdigital Jul 15 '10 at 19:39
feedback

z-index won't work if your elements aren't position:absolute

link|improve this answer
3  
Or position: relative as gearsdigital mentions – ScottS Jul 15 '10 at 19:11
if your elements aren't positioned (relative positioning works as well) developer.mozilla.org/en/Understanding_CSS_z-index – Felipe Alsacreations Jul 15 '10 at 19:13
feedback

Try an inset box shadow ON the element you want to appear under.

.element-that-is-to-be-under{
-webkit-box-shadow: inset 0 8px 4px -4px #ddd;
-moz-box-shadow: inset 0 8px 4px -4px #ddd;
box-shadow: inset 0 8px 4px -4px #ddd;
appear}

Doing this will alleviate the z-index shuffle and you'll be much happier in the long run.

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.