Hi,
Mac IE doesn't seem to handle z-index properly. I have a simple test stylesheet:
#logo{
position:relative;
height: 112px;
padding: 0px;
margin:0px;
border-style: none;
z-index:3;
}
#logo2{
height: 112px;
padding: 0px;
margin:-20px;
border-style: none;
z-index:2;
}
with the corresponding html:
<DIV id="logo">
<img src="images/MLlogo_01.jpg" width="112" height="112">
</div>
<DIV id="logo2">
<img src="images/MLlogo_02.jpg" width="112" height="112">
</div>
MLlogo_02 is supposed to be under MLlogo_01. This works fine on the PC browsers IE, Opera, Firefox, Netscape 6. I can't get this to work on IE Mac. Note position:relative in #logo is needed to get it to work on IE PC.
Any help would be appreciated.
Thanks.
Mac IE doesn't seem to handle z-index properly. I have a simple test stylesheet:
#logo{
position:relative;
height: 112px;
padding: 0px;
margin:0px;
border-style: none;
z-index:3;
}
#logo2{
height: 112px;
padding: 0px;
margin:-20px;
border-style: none;
z-index:2;
}
with the corresponding html:
<DIV id="logo">
<img src="images/MLlogo_01.jpg" width="112" height="112">
</div>
<DIV id="logo2">
<img src="images/MLlogo_02.jpg" width="112" height="112">
</div>
MLlogo_02 is supposed to be under MLlogo_01. This works fine on the PC browsers IE, Opera, Firefox, Netscape 6. I can't get this to work on IE Mac. Note position:relative in #logo is needed to get it to work on IE PC.
Any help would be appreciated.
Thanks.