Remove all padding and margin table HTML and CSS

2019-01-22 05:16发布

I have this 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>

and here is the css

html, body, #page {
    height:100%;
    width:100%;
    margin:0;
    padding:0;
}

#header {
    margin:0;
    padding:0;
    height:20px;
    background-color:green;
}

and I want to remove all margin and padding but always I have that :

enter image description here

How can I resolve this?

7条回答
乱世女痞
2楼-- · 2019-01-22 06:18

Try this:

table { 
border-spacing: 0;
border-collapse: collapse;
}
查看更多
登录 后发表回答