删除我网站顶部的空间

时间:2013-08-15 12:05:54

标签: html css margins

我只是在4年的中断后重新开始编码,从那时起网上的很多东西都发生了变化。困扰我的一个问题是从页面顶部删除空格。我尝试了从填充到边距,我的身体,桌子和div风格的所有内容。

网址为http://www.studio1194.com/index1.htm

3 个答案:

答案 0 :(得分:2)

添加:

 border-collapse: collapse;

符合table本身的风格。

但是你应该考虑用css而不是表格来制作布局。

答案 1 :(得分:0)

我不知道使用负边距是否正确,但这有效:

table.main {
 margin-left: auto;
 margin-right: auto;
 **margin-top: -2px;**
 width: auto;
 height: auto;
 max-width: 800px;
 padding: 0px;
 border-width: 0px;
}    

答案 2 :(得分:0)

添加:cellpadding="0" cellspacing="0"  在表格标签

<table class="main" cellpadding="0" cellspacing="0">