如何删除表顶部的保证金?

时间:2010-06-16 04:46:01

标签: html css space

编辑:我在这里发布了一些代码,但我无法重现。所以这是问题的链接:

http://stackmobile.quickmediasolutions.com/questions.php?site=stackoverflow

无论我做什么,桌子和DIV之间仍然存在差距。这种情况发生在Linux上的Google Chrome 5.0.375.70测试版上。 (它似乎也出现在其他基于Webkit的浏览器上。)

如何摆脱空间?

4 个答案:

答案 0 :(得分:2)

尝试使用以下CSS: -

div {
    margin: 0px;
    padding: 0px;
}
table {
    margin: 0px;
    border-collapse: collapse;
    padding: 0px;
}

答案 1 :(得分:1)

尝试将div余量归零:

div {
    margin:0;
}

这是我使用的完整页面,它似乎对我有用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/\
xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <title>Test</title>
        <style type="text/css">
            div {
                width:2em;
                height:2em;
                background-color:black;
            }
            table {
                background-color:red;
                margin: 0px;
                border-collapse: collapse;
                padding: 0px;
            }
        </style>
    </head>
    <body>
        <div></div>
        <table>
            <tr><td>Test</td></tr>
        </table>
    </body>
</html>

答案 2 :(得分:1)

div和表之间可能有空格字符。如果是,那么尝试删除它。

尝试给予

body
{
    font-size: 1px;
}

并检查4px是否已减少。

答案 3 :(得分:0)

我终于修好了!

我需要添加的是

height: 40px;

#topbar_logo {
    float: left;
}