Ciao a tutti,
ho un problema con il layout di un sito: vorrei ottenere un layout come questo (che rispetti tutte le proprietà di width e height sotto specificate):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY>
<TABLE WIDTH=100% HEIGHT=100% BORDER=0>
<TR>
<TD COLSPAN=2 height=100>testa</TD>
</TR>
<TR>
<TD COLSPAN=2 height=40>separatore</TD>
</TR>
<TR>
<TD WIDTH=200>menu</TD>
<TD>corpo</TD>
</TR>
<TR>
<TD COLSPAN=2 height=30>piede</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Utilizzando però i css in quanto mi interessa poter sfruttare il box model di IE con HTML4 per mantenere compatibilità con firefox e opera.
Il problema che mi si presenta è che con doctype HTML4 non mi vengono piu' ripettate le height.
Come si fa? Sto diventando matto!