i got this piece of code:
<head>
<title>width height</title>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" height="100%" width="800px">
<tr>
<td style="height: 100px">
cucu
</td>
</tr>
<tr style="height: 100%">
<td class="tdMargin" style="width: 760px">
bau
</td>
</tr>
<tr>
<td style="height:50px" valign="bottom">
bla
</td>
</tr>
</table>
</body>
</html>
it behaves how it should
i added it in a masterpage, it works all right
but when i take the doctype stuff from the old masterpage (we are redesigning the app) and add the:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
to the page, the design (height 100% stuff) goes mad
is there a way to fix it?
i don't know too much about doctypes ...
it should basically work in IE, if that helps
Please have a look : HTML Declaration
The DocType you are using seems to be incorrect or restrictive. Please set it as per the HTML version you are using.