0

CSS: div horizontal zentrieren

div#index{ position: absolute; width: 1000px; left: 50%; margin-left: -500px; /* negative Hälfte von width:1000px */ } div#window{ position: absolute; width: 1000px; padding-top: 66px; left: 50%; margin-left: -500px; /* negative Hälfte von width:1000px */ } <div id=”index”>Seiteninhalt</div> <div id=”window”>Fenster</div>