problem med div tabeller
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<style media="screen" type="text/css">
.content { width:100%; height:100%;}
.td1 { background-color:#03F; height:33px;}
.td2 { width:800px;}
.td3 { background-color:#099; width:800px; height:33px;}
.td4 { width:400px; float:left;}
.td5 { width:400px; float:left;}
</style>
<body>
<div class="content">
<div class="td1"></div>
<div class="td2">
<div class="td4"></div>
<div class="td5">aaa<br />aaa</div>
</div>
<div class="td3">aaa</div>
</div>
</body>
</html>
Når jeg laver dette nummer, så bliver td3 tabellen ødelagt hvordan kan dette være ???
