Thomas J.: Ohne Tabellen Inhalte sauber nebeneinander anordnen?

Beitrag lesen

Tag auch

Es geht übrigens auch ohne den Container:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
     "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Boxtest</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body style="margin:0; padding:0">
<div style="border:1px solid red; position:absolute; top:10px; left:4%; width:28%">
<p style="font-size:2em; margin:0; padding:0; line-height:300px">text text text text text text</p>
</div>
<div style="border:1px solid red; position:absolute; top:10px; left:36%; width:28%">
<p style="font-size:2em; margin:0; padding:0; line-height:300px">text text text text text text</p>
</div>
<div style="border:1px solid red; position:absolute; top:10px; left:68%; width:28%">
<p style="font-size:2em; margin:0; padding:0; line-height:300px">text text text text text text</p>
</div>
</body>
</html>

Thomas J.