intensivstation

Horizontal und vertikal zentrierte Box

Diese Box verschwindet nicht wenn das Browserfenster kleiner als die Inhaltsbox wird.
Der Inhaltsbox hat eine fixe Breite und eine fixe Höhe. Diese Box ist horizontal und vertikal zentriert. Sie ist sogar IE6 tauglich.

html, body { /* html und body brauchen diese Angabe */
	height:100%;
	}
#space { 
	width:1px;
	height:50%;
	margin-bottom:-300px; /* die Hälfte der Inhals's Höhe */
	float:left;
	}
#inhalt {
        width: 600px;
        height:600px;
	background-color: #ffffff;
	border: 1px solid #564b47;
        margin: 0 auto;
        position:relative; /* hebt den inhalt vor den space  */
	clear:left; /* hebt das float vom space auf  */
	}


css
monorom
Creative Commons License This work is licensed under a Creative Commons License.