Hi!
Das Beispiel von 1100 0101 funktioniert.
Mein Problem ist, ich habe nochmal ein div außenrum. (Siehe Beispiel)
Ich dachte eigentlich, daß sich die darin enthaltenen divs relativ dazu orientieren
würden. Das ist aber anscheinend nicht der Fall.
Zusätzliche Breitenangaben bringen im IE was, im FF jedoch nicht.
Hier mal das komplette Beispiel: (Vielleicht steh ich auch total auf'm Schlauch

)
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<style type="text/css">
body {
margin: 0 auto;
padding: 0;
vertical-align: top;
font: 100.01% Verdana, Arial, Helvetica, sans-serif;
background: #FBFBFB;
}
</style>
<head>
<body>
<div style="height:93px; background: url(bla.gif) repeat-x;">
<div style="float:left;border:1px solid blue;width:120px;height:200px;"><img src="blabla.gif" alt="" /></div>
<div style="border:1px solid blue;width:300px;"><h1>retzreterter</h1></div>
<div style="border:1px solid blue;float:left;">ertertert</div>
</div>
</body>
</html>