Ho questa tabella:Rimuovere tutti imbottitura e tavolo margine di HTML e CSS
<body>
<table id="page" >
<tr id="header" >
<td colspan="2" id="tdheader" >je suis</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
</tr>
</table>
</body>
ed ecco il css
html, body, #page {
height:100%;
width:100%;
margin:0;
padding:0;
}
#header {
margin:0;
padding:0;
height:20px;
background-color:green;
}
e voglio rimuovere tutti i margini e padding, ma sempre ho che :
Come posso risolvere questo?
Dovrebbe essere preferibile utilizzare CSS anziché attributi deprecati. –