Ciao a tutti.
Sto progettando un sito e mi piacerebbe che fosse perfettamente in linea con gli standard del W3C. Così di tanto in tanto faccio una capatina su http://validator.w3.org/, butto e gli faccio validare un po' dell'HTML prodotto dalle mie pagine ASP. Mi è capitato che il validatore mi segnala errore dove ho specificato un attributo height nel tag <tr>.
As esempio:
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Rs Service [Home page]</title>
</head>
<body>
<center>
<table id="page" width="758" border="0" cellspacing="0" cellpadding="0">
<tr height="1">
<td width="130"></td>
<td width="368"></td>
<td width="260"></td>
</tr>
</table>
</center>
</body>
</html>
Mi dice there is no attribute "HEIGHT". Ma perchè ?
Come dovrei fare allora per limitare l'altezza nelle righe delle table ?

Ciao
Simo