Hallo,
ich weiß nicht was bei nachfolgendem Code falsch ist, aber eijentlich müsste der funzen...
Alle Browser bis auf IE, machen das so wie ich mir's gedacht hab...
rauskommen soll das:
+-------------------------+
| Oben |
+-------+-----------------+
| Links | Rechts |
+-------+-----------------+
aber der IE macht's leider so:
+-------------------------+
| Oben |
+-------------------------+
| Links |
+-------------------------+
| Rechts |
+-------------------------+
wie kann äch das umgehen?
Der Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>bla</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="pragma" content="no-cache">
<style type="text/css">
</style>
</head>
<body>
<div style="border:1px solid #AAAAAA;">Oben
</div>
<div style="display:table;">
<div style="display:table-row;">
<div style="display:table-cell;width:200px;border:1px solid #AAAAAA;">
Links
</div>
<div style="display:table-cell;width:800px;border:1px solid #AAAAAA;">
Rechts
</div>
</div>
</div>
</body>
</html>
Bitte helft mir...