intensivstation

FIX Horizontal & vertikal zentrierte Box mit fixer Breite und Höhe.

Diese Box bleibt stehen wenn das Browserfenster kleiner als die Inhaltsbox wird.

FIX Horizontally & vertically centered box with fixed height and width.

#space { 
	width:1px;
	height:50%;
	margin-bottom:-300px; /* 1/2 content height */
	float:left;
	}
	section {
	width: 600px;
	height:600px;
	background-color: #ffffff;
	border: 1px solid #bbb;
	padding: 20px;
	margin: 0 auto;
	position:relative; /*hebt den inhalt vor den space */
	clear:left; /* clear's float from space  */
	}