我如何删除表中的行和列之间的额外空间。

我已经尝试改变边缘,填充,和各种边界属性的表和tr和td。

我希望所有的图片都是紧挨着的,看起来像一个大图像。

我该如何解决这个问题?

CSS

table {
  border-collapse: collapse;
}

HTML

<?xml version="1.0" encoding="utf-8"?>
<!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" xml:lang="en" lang="en">

<head>
  <title>Tera Byte Video Game Creation Camp</title>
  <link rel="stylesheet" type="text/css" href="style.css"></link>
</head>

<body>
  <table class="mytable" align="center">
    <tr class="header">
      <td colspan="3"><img src="images/home_01.png" /></td>
    </tr>
    <tr class="top">
      <td colspan="3"><img src="images/home_02.png" /></td>
    </tr>
    <tr class="link-row">
      <td><img src="images/home_03.png" /></td>
      <td><img src="images/home_04.png" /></td>
      <td><img src="images/home_05.png" /></td>
    </tr>
    <tr class="link-row">
      <td><img src="images/home_07.png" /></td>
      <td><img src="images/home_06.png" /></td>
      <td><img src="images/home_08.png" /></td>
    </tr>
    <tr class="link-row">
      <td><img src="images/home_09.png" /></td>
      <td><img src="images/home_10.png" /></td>
      <td><img src="images/home_11.png" /></td>
    </tr>
    <tr class="link-row">
      <td><img src="images/home_12.png" /></td>
      <td><img src="images/home_13.png" /></td>
      <td><img src="images/home_14.png" /></td>
    </tr>
    <tr class="bottom">
      <td colspan="3"><img src="images/home_15.png" /></td>
    </tr>
  </table>

</body>

</html>

当前回答

table 
{
    border-collapse: collapse;
}

将折叠分隔表列的所有边界…

或者尝试

<table cellspacing="0" style="border-spacing: 0;">

所有单元格间距为0,边界间距为0,以实现相同的效果。

玩得开心!

其他回答

这招对我很管用:

#table {
  border-collapse: collapse;
  border-spacing: 0;
}

将Cellpadding和cellspacing设置为0将消除行和列之间不必要的空间…

试试这个,

table{
border-collapse: collapse; /* 'cellspacing' equivalent */
}

table td, 
table th{
padding: 0; /* 'cellpadding' equivalent */
}

只是在Jacob的答案上加上,对于td中的img,

body {line-height: 0;}
img {display: block; vertical-align: bottom;}

这适用于大多数电子邮件客户端,包括Gmail。但Outlook不是。 对于outlook,你需要多做两步:

table {border-collapse: collapse;}

并设置每个td元素的高度和宽度与其包含的图像相同。例如,

<td width="600" height="80" style="line-height: 80px;">
    <img height="80" src="http://www.website.com/images/Nature_01.jpg" width="600" />
</td>
table 
{
    border-collapse: collapse;
}

将折叠分隔表列的所有边界…

或者尝试

<table cellspacing="0" style="border-spacing: 0;">

所有单元格间距为0,边界间距为0,以实现相同的效果。

玩得开心!