如何删除表格中行和列之间的多余空间?


183

如何删除表格中行和列之间的多余空间。

我尝试过更改表格以及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>

Answers:


87

将此CSS重置添加到您的CSS代码中:(从此处开始

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

它将有效地重置CSS,摆脱填充和边距。


16
如果您读到有评论,则表示:/ *表仍然需要标记中的'cellspacing =“ 0”'* /
easwee 2010年

2
如果您在页面中使用了很多CSS而又不想重置它,会发生什么?
罗伯·约翰斯顿

最好是使用重置或某种框架并从那里构建。但是,在这种情况下,您将不得不重置每个样式,即。表{padding:0px; 边框:0px; 边界崩溃:崩溃;等} ....查看quirksmode.org/css/tables.html了解更多。
vectran 2011年

您可以跳过很多,因为它仅适用于表。
蔡浩阳

32
这太过分了,无法回答问题,甚至还没有完全重置。也许隔离相关代码,进行解释,然后建议使用重置。
桑迪·吉福德

204

添加到vectran的答案:您还必须cellspacing在table元素上设置属性,以实现跨浏览器的兼容性。

<table cellspacing="0">

编辑(出于完整性考虑,我将在5年后扩展此内容:):

Internet Explorer 6Internet Explorer 7要求您直接将cellspacing设置为表属性,否则间距不会消失。

Internet Explorer 8和更高版本以及流行浏览器的所有其他版本(Chrome,Firefox,Opera 4+)均支持CSS属性border-spacing

因此,为了使跨浏览器表的单元格间隔重置(支持将IE6作为恐龙浏览器),可以遵循以下代码示例:

table{
  border: 1px solid black;
}
table td {
  border: 1px solid black; /* Style just to show the table cell boundaries */
}


table.no-spacing {
  border-spacing:0; /* Removes the cell spacing via CSS */
  border-collapse: collapse;  /* Optional - if you don't want to have double border where cells touch */
}
<p>Default table:</p>

<table>
  <tr>
    <td>First cell</td>
    <td>Second cell</td>
  </tr>
</table>

<p>Removed spacing:</p>

<table class="no-spacing" cellspacing="0"> <!-- cellspacing 0 to support IE6 and IE7 -->
  <tr>
    <td>First cell</td>
    <td>Second cell</td>
  </tr>
</table>


68

这为我工作:

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


10

只需在Jacob的答案之上添加,因为img在中td

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

这适用于大多数电子邮件客户端,包括Gmail。但不是Outlook。对于Outlook,您需要执行两个步骤:

table {border-collapse: collapse;}

并设置每个td元素具有相同heightwidth其包含的图像。例如,

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

8
table 
{
    border-collapse: collapse;
}

将折叠分隔表格各列的所有边框...

或尝试

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

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

玩得开心!


1
<table cellspacing="0" border-spacing: 0;>是无效的标记!<table cellspacing="0" style="border-spacing: 0;">将是正确的
Dirk vonGrünigen2014年

8

对于符合标准的HTML5,请添加所有以下CSS来删除表中图像之间的所有空间:

table { 
    border-spacing: 0;
    border-collapse: collapse;
}
td {
    padding:0px;
}
td img {
    display:block;
}

5

试试这个,

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

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

4

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


4

我要做的就是添加:

line-height: 0px;

在我的

<tr ...>

还提供了OP的问题的其他答案,这些答案已在一段时间前发布。发布答案时,请确保添加新的解决方案或实质上更好的解释,尤其是在回答较旧的问题时。
help-info.de

1

将此行添加到文件的开头对我有用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

修改css以设置适当的边框属性直到我添加上述行后才起作用


这是唯一对我有用的东西!+1,谢谢!我将其设置为“严格”而不是“过渡”。
SMBiggs

0

您是否尝试过删除具有colspan的TR,看看它是否有任何改变?

当涉及到精确的表设计时,我经历过colspans和rowpans的问题。如果没有colspan-TR,您的图像看起来还不错,那么我将从那里开始并构建一个嵌套表集。

另外,您的style.css似乎不完整,也许那里出了点问题?我至少要添加padding: 0; margin: 0;到表中(或添加到“ mytable”类中)。确保您的图像也没有空格和/或边框(例如,通过添加img { border: 0; }到样式表中)。


用colspan删除TR不会执行任何操作。添加填充和边距也无济于事
Zach Galant 2010年

0

我遇到了这个问题,好几个帖子的建议都没有奏效,我全部尝试了。我的问题原来是我正在创建的表嵌套在另一个表中,继承了它的属性。我需要覆盖容器表。

在此示例中,SuColTable是表上的类。

.SuColTable tr {
    border: none !important;
}

.SuColTable td {
    border-spacing: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 0 !important;
}


.SuColTable {
    border-collapse: collapse !important;
    border: none !important;
    border-spacing: 0 !important;
    border-collapse: separate !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
// all padding would be padding: 0 !important

border-collapse,border:none和border-spacing摆脱了表格/行/列的行。填充0调用从容器表中删除了填充。为了使其工作,我必须在每个样式上都包含!important,以便覆盖容器表样式。

我有padding_top,left和bottom(而不是只有padding),因为我还有另外两个控制padding_right的类。

line-height: 0px;

行高零使行高一行。如果您有多行,则将它们压缩为一行。


-2

table{
  border: 1px solid black;
}
table td {
  border: 1px solid black; /* Style just to show the table cell boundaries */
}


table.no-spacing {
  border-spacing:0; /* Removes the cell spacing via CSS */
  border-collapse: collapse;  /* Optional - if you don't want to have double border where cells touch */
}
<p>Default table:</p>

<table>
  <tr>
    <td>First cell</td>
    <td>Second cell</td>
  </tr>
</table>

<p>Removed spacing:</p>

<table class="no-spacing" cellspacing="0"> <!-- cellspacing 0 to support IE6 and IE7 -->
  <tr>
    <td>First cell</td>
    <td>Second cell</td>
  </tr>
</table>


还提供了OP的问题的其他答案,这些答案已在一段时间前发布。发布答案时,请确保添加新的解决方案或实质上更好的解释,尤其是在回答较旧的问题时。
help-info.de
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.