Hello out there!
http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes sagt doch explizit, daß die fehlenden Elemente automatisch erzeugt werden ...
Wieder was gelernt. Ich war dieser Meinung, weil die vertikale Zentrierung so funktioniert:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>TEST</title>
<style type="text/css">
[code lang=css] body, html {
height: 100%;
margin: 0;
padding: 0;
}
body {
display: table-cell;
vertical-align: middle;
}
html {
display: table;
}
</style>
</head>
<body>
<p>foo</p>
</body>
</html>[/code]
ohne
html {
display: table;
}
jedoch nicht.
Aber kann ja auch nicht. Die Objekte, die 'table-row' und 'table' entsprächen, lägen ja zwischen html und body und wüssten wohl nichts von einer Höhenangabe 100%.
See ya up the road,
Gunnar
--
“Remember, in the end, nobody wins unless everybody wins.” (Bruce Springsteen)
“Remember, in the end, nobody wins unless everybody wins.” (Bruce Springsteen)