Bitte erstellt mal ein html mit folgendem Inhalt:
So, und jetzt schaut euch das mal im IE und im Mozilla an. Macht da nicht der Mozilla einen Fehler? Weshalb hat der erste Div-Block (der rote eventblock) eine Null-Höhe. Müsste doch so sein wie im IE, dass er seine Höhe dem Inhalt anpasst...
Wo liegt der Fehler, und wie umgehe ich ihn?
Grüsse
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
.eventblock {
border: 1px solid #FF0000;
width: 800px;
}
.datum {
width: 100px;
border: 1px solid #00FF00;
float: left;
}
.contentblock1 {
border: 1px solid #0066FF;
float: right;
width: 695px;
}
-->
</style>
</head>
<body>
<div class="eventblock">
<div class="datum">01.05.2005
</div>
<div class="contentblock1">
<p>testest</p>
<p>testest</p>
<p>testest</p>
<p>testest</p>
<p>testest </p>
</div>
</div>
</body>
</html>
So, und jetzt schaut euch das mal im IE und im Mozilla an. Macht da nicht der Mozilla einen Fehler? Weshalb hat der erste Div-Block (der rote eventblock) eine Null-Höhe. Müsste doch so sein wie im IE, dass er seine Höhe dem Inhalt anpasst...
Wo liegt der Fehler, und wie umgehe ich ihn?
Grüsse