I would like shadow to go behind the text. Does anyone see what I am doing wrong?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
<style>
.tooltip{
background-color: #ffffe1;
position: absolute;
border-style:solid;
border-width: thin;
border-color: #000000;
z-index: 25;
}
.tooltip_shadow{
background-color: #dadbda;
position: absolute;
width: 100%;
height: 100%;
left: 5px;
top:5px;
z-index: -1;
}
</style>
<SPAN style="TOP: 86px; LEFT: 39px" class=tooltip>
<SPAN style="Z-INDEX: 15">This is a message!</SPAN>
<SPAN class=tooltip_shadow>
</SPAN>
</SPAN>
Thanks, Grae