daHappy: Div Ausrichtungsproblem

joar also habe folgendes problem links hab ich nen div für die linkleiste gemacht (war mir wegen der wechselnden bilder einfacher als dafür noch nen javascript zu schreiben damit es mit nem frame läuft) ... jetz soll einfach nur rechts daneben der inhalt hin ... das problem is der soll ja auch mittig in bezug auf die ganze seite sein also muss ich mit margin-right dafür sorgen das rechts nen stück nich mitbenutzt wird ... in firefox alles okay und schick ... im IE habe ich jetz aber immer ne blöde horizontale leiste....

  
<div style="position:absolute; width:272px; text-align:left; float:left; margin-left:10px; z-index:50;">  
---links---  
</div>  
<div style="position:absolute; z-index:39; border-width:0px; overflow:hidden; width:98%;">  
<div style="position:relative; z-index:40; border-width:0px; overflow:hidden; margin-right:285px; margin-left:285px; overflow:hidden;"><div style="position:absolute; width:272px; text-align:left; float:left; margin-left:10px; z-index:50;">  
  
---inhalt---  
  
</div>  
</div>  

  1. Moin,
    mal etwas abgespeckt:

    <div style="position:absolute; width:250px; border-style:solid;">
    ---links---
    </div>
    <div style="position:absolute; width:500px; left:270px; border-style:solid;">
    ---inhalt---
    </div>

    Paul