我正在编写一份 HTML 时事通讯,我正在尝试将表示 Bar 的编码黑色行附加到包含图像的下方行。问题是我的黑色行不包含单独的空格,并且它没有连接到该行。这是我的这段代码。
<table border="0" cellpadding="0" cellspacing="5" width="100%">
<tbody>
<tr>
<td width="190" bgcolor="#000000">Bar</td>
<td width="190" bgcolor="#000000">Bar</td>
<td width="190" bgcolor="#000000">Bar</td>
<tr>
<td width="190" height="100" >
<img src="/Users/Desktop/90snostalgia.jpg" alt="" width="190" height="130"/>
</td>
<td width="190" height="100">
<img src="/Users/Desktop/90snostalgia.jpg" alt="" width="190" height="130"/>
</td>
<td width="190" height="100" >
<img src="/Users/Desktop/90snostalgia.jpg" alt="" width="190" height="130"/>
</td>
</tr>
</tbody>
</table>