Guten Morgen Forum!
Ich moechte eine Navigation mit DHTML realisieren und habe zu diesem Zweck einen einen Menu-DIV erstellt, in dem sowohl die sichtbaren, als auch die unsichtbaren <DIV>'s der Menuepunkte plaziert sind.
Leider zeigen mir beide 4er Browser das Menu falsch an, alle Grafiken werden untereinander sichtbar dargestellt.
Was mach ich falsch?
Danke für Eure Hilfe
<HTML>
<HEAD>
<TITLE>CSS Test</TITLE>
<STYLE TYPE="css/text">
<!--
#Mcompany { position:absolute; left:200; top:200; width:169; height:12; visibility:visible }
#Mstructure { position:absolute; left:0; top:0; width:52; height:12; visibility:visible }
#ONMstructure { position:absolute; left:0; top:0; width:52; height:12; visibility:hidden }
#strich1 { position:absolute; left:57; top:0; width:1; height:12; visibility:visible }
#Mhistory { position:absolute; left:62; top:0; width:39; height:12; visibility:visible }
#ONMhistory { position:absolute; left:62; top:0; width:39; height:12; visibility:hidden }
#strich2 { position:absolute; left:106; top:0; width:1; height:12; visibility:visible }
#Mphilosophy { position:absolute; left:111; top:0;width:58; height:12; visibility:visible }
#ONMphilosophy { position:absolute; left:111; top:0;width:58; height:12; visibility:hidden }
//-->
</STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<DIV ID="Mcompany">
<DIV ID="structure"><IMG SRC="images/nav_structure_off.gif" WIDTH="52" HEIGHT="12" NAME="structurImg"></DIV>
<DIV ID="ONstructure"><IMG SRC="images/nav_structure_on.gif" WIDTH="52" HEIGHT="12" NAME="ONstructurImg"></DIV>
<DIV ID="strich1"><IMG SRC="images/strich_unavi.gif" WIDTH="1" HEIGHT="12"></DIV>
<DIV ID="Mhistory"><IMG SRC="images/nav_history_off.gif" WIDTH="39" HEIGHT="12"></DIV>
<DIV ID="ONMhistory"><IMG SRC="images/nav_history_on.gif" WIDTH="39" HEIGHT="12"></DIV>
<DIV ID="strich2"><IMG SRC="images/strich_unavi.gif" WIDTH="1" HEIGHT="12"></DIV>
<DIV ID="Mphilosophy"><IMG SRC="images/nav_philosophy_off.gif" WIDTH="58" HEIGHT="12"></DIV>
<DIV ID="ONMphilosophy"><IMG SRC="images/nav_philosophy_on.gif" WIDTH="58" HEIGHT="12"></DIV>
</DIV>
</BODY>
</HTML>