Einzelnen Beitrag anzeigen
  #5 (permalink)  
Alt 07.12.2005, 00:11
butterhead butterhead ist offline
Neuer Benutzer
neuer user
Thread-Ersteller
 
Registriert seit: 06.12.2005
Beiträge: 9
butterhead befindet sich auf einem aufstrebenden Ast
Standard

cool, das klappt, danke für Deine Hilfe!

Nun hab ich aber noch ein anderes Problem, was vorher nur im FF auftrat, jetzt aber auch (ohne das <?xml... ?>) im IE... vielleicht hast Du dafür auch ne Lösung? Dann wären meine Probleme ...vorerst... beseitigt

Ich will ein Feld mit einer height von 100% haben, unabhängig vom Inhalt... es geht aber immer nur soweit wie der Content reicht. Im Quirks Mode funktionierte das so im IE wie gesagt, aber nicht im FF - nun auch nicht mehr im IE. Hab das Problem mal in eine einzelne Datei ausgelagert:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">

<head>
<title></title>
<style type="text/css">
body {
	margin: 0;
	padding: 20px 0 0 0;
	background-color: #E1E1E1;
}
* html body {
	width: 100%;
	text-align: center;
	overflow: hidden;
}
div#page_box {
	width: 788px;
	height: 100%; 
	text-align: left;
	margin: 0px auto 0px auto;
	padding-top: 1px;
	background-color: #00495A;
}
#content {
	width: 100%;
	margin: 30px;
	font-family: Verdana;
	color: #FFF;
}
</style>
</head>

<body>

<div id="page_box">


		<div id="content">
		Hier Content.

Das gr&uuml;ne Feld soll immer bis ganz unten gehen, egal wieviel Content hier drin steht!
		</div>


</div>


</body>
</html>
Hast Du hierfür auch nen Tipp...?
Mit Zitat antworten