HTML - 从表行中删除多余的像素

时间:2015-03-04 20:32:59

标签: html

总而言之。我的基本HTML代码有问题。我的任务是组合4个图片部分,没有明显的边距。我只允许使用没有CSS元素的HTML代码,我必须使用表格。 我的问题是我无法摆脱行之间的空间。我发现边框间距来自webkit浏览器表样式表。有没有办法只使用HTML代码来删除此间距。 忘记提到图片大小是3 - 200px x 200px和1- 600px x 200px

Chrome调试器显示额外的4px是从表样式表继承的

table {
display: table;
border-collapse: separate;
border-spacing: 2px;
-webkit-border-horizontal-spacing: 2px;
-webkit-border-vertical-spacing: 2px;
border-color: gray;
}

P.S。如果我设置图片高度=“100%”和宽度=“100%”比我实现我的目标,但我没有舒尔这是一个正确的方法来做到这一点。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
"http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<title>LR1</title>
</head>
<body>
<!--Using table without CSS-->
<table bgcolor="green" border="0px" cellpadding="0px" cellspacing="0px">
<tbody>
<tr>
    <td ><img src="p_01.jpg" alt="Part 1" width="200px" height="200px"></td>
    <td ><img src="p_02.jpg" alt="Part 2" width="200px" height="200px"></td>
    <td ><img src="p_03.jpg" alt="Part 3" width="200px" height="200px"></td>
</tr>
<tr >
    <td colspan="3">
        <a href="http://en.wikipedia.org/wiki/Swan" target="_blank"><img src="p_04.jpg" alt="Part 4" width="600px" height="200px">
        </a>
    </td>
</tr>
</tbody>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我找到解决问题的唯一方法是在图像中添加style =“display:block”。显示:默认为内联为单元格添加额外空间。