Om nah hoo pez nyeetz, olaf!
ich würde gerne eine Tabelle css generieren
Unter Umständen könntest du auch eine Tabelle verwenden.
Das kann ich mir nicht erklären und hoffe auf Eure Hilfe bzw. Erklärungen
welcher IE?
dieser Quelltext?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>display</title>
<style type="text/css">
div.table { display:table; border-collapse:collapse; }
div.tr { display:table-row; }
div.td { display:table-cell; border:thin solid red; padding:5px; }
</style>
</head><body>
<div class="table">
<div class="tr">
<div class="td">ich</div>
<div class="td">bin</div>
<div class="td">eine</div>
<div class="td">Tabelle</div>
</div>
</div>
<p><a href="../positionierung.htm#display2">zurück</a></p>
</body>
</html>
Dieser Quelltext ist nicht mehr ganz up to date. Nimm mal diesen. Obwohl das sicher nicht die Fehlerquelle ist.
<!doctype html>
<html><head>
<meta charset="utf-8">
<title>display</title>
<style type="text/css">
div.table { display:table; border-collapse:collapse; }
div.tr { display:table-row; }
div.td { display:table-cell; border:thin solid red; padding:5px; }
</style>
</head><body>
<div class="table">
<div class="tr">
<div class="td">ich</div>
<div class="td">bin</div>
<div class="td">eine</div>
<div class="td">Tabelle</div>
</div>
</div>
<p><a href="../positionierung.htm#display2">zurück</a></p>
</body>
</html>
Achte darauf, dass du die Datei auch als "utf-8 ohne BOM" speicherst.
Matthias