Consider the following simple html page markup:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
body, html
{
height: 100%;
width: 100%;
}
td
{
border:1px solid red;
}
table
{
border-collapse: collapse;
}
</style>
</head>
<body>
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 100%;">
<tr>
<td style="width: 100%; height: 100%;">
cell 1
</td>
<td style="width: 100%; height: 100%;">
cell 2
</td>
</tr>
<tr>
<td style="width: 100%; height: 100%;">
cell 3
</td>
<td style="width: 100%; height: 100%;">
cell 4
</td>
</tr>
</table>
</body>
</html>
In IE 7/8/Opera, the 100% height of the tags is interpreted as 100% of the page, where as in Firefox/Chrome/Safari, the entire table takes up the entire height of the page, and instead, the table rows fill in the remaining space that they are given. I need IE to behave the same way as non-IE browsers. Is there a way to get this same behavior in IE using the XHTML transitional doctype? I have been working on a crazy javascript routine to mimic the behavior but I'm wondering if there is a simpler way like a CSS hack or something. Thanks!