Ragazzi non riesco a mantenere fisse le dimensioni di questa table che dovrebbe avere larghezza max 400px e 2 td di 200px l'una...
Mi date una mano?

codice:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">

#container{
	max-width:400px; display:block
}
table {
	BACKGROUND-COLOR:#CCCCCC; WIDTH:400px; BORDER:#999999 1px solid
}
td{
	WIDTH:198px; BORDER:#999999 1px solid; FONT-FAMILY:Arial, Helvetica, sans-serif; FONT-SIZE:11px; COLOR:#125172; PADDING-LEFT:2PX; PADDING-RIGHT:2PX; padding-top:0px
}
</style>
</head>

<body>
<div id="container">
<table width="400" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>NOME   COMUNE</td>
    <td>dd</td>
  </tr>
</table>
</div>
</body>
</html>