Forum Moderators: not2easy
.tablas {
height: 100%;
}
body {
margin: 70px 0px 0px 0px;
padding: 0px;
background-repeat: no-repeat;
background-position: left top;
height: 100%;
}
html {
height: 100%;
}
<table width=100% border=0 cellpadding=0 cellspacing=0 class=tablas><tr><td><table width=90% border=0 align=center cellpadding=0 cellspacing=5 class=tablas><tr><td colspan=2 valign=top><h1><b>Bla </b></h1>
And inside that one another table class=tablas
html & body elements, but the nested tables don't. whereas in Firefox they do
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> Page Title </title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<style type="text/css" media="screen">
html, body {margin: 0; padding: 0; height: 100%; background: #fff;}
body {
margin: 70px 0px 0px 0px;
padding: 0px;
background: #eee;
}
.tablas {
height: 100%;
border: 3px double #000;
}
</style>
</head>
<body>
<table width=100% border=0 cellpadding=0 cellspacing=0 class=tablas>
<tr>
<td>
<table width=90% border=0 align=center cellpadding=0 cellspacing=5 class=tablas>
<tr>
<td valign=top><h1><b>Bla </b></h1></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>