Daniel's
Web-Site
Home
-
Gott, Tee und die Welt
Beispiele für den Einsatz von CSS

Plazierung eines Elementes am unteren Rand des Browserfensters


	#footer { 
	 bottom: 0px; 
	 left: 0px; 
	 /* ohne diese Angabe wird dieses Menü im IE 7 rechts (!) positioniert */ 
	 font-size: 9px; 
	 padding: 0; 
	 margin-bottom: 1px; 
	 margin-left: 192px; 
	 position: fixed; 
	} 

	/* Star-Hack für IE bis Verson 6: * html #ID */ 
	 /* Dieser Hack beseitigt das Problem, 
	 dass in IE 5 und 6 "margin-left: 195px;" so wirkt wie "margin-left: 192px;" in Firefox */ 
	* html #footer { 
	 margin-left: 195px; 
	}