J'ai cette table :
<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>
et voici la css
html, body, #page {
height:100%;
width:100%;
margin:0;
padding:0;
}
#header {
margin:0;
padding:0;
height:20px;
background-color:green;
}
et je veux supprimer toutes les marges et tous les espaces, mais j'ai toujours ce :
Comment puis-je résoudre ce problème ?