我是网络开发和编码的新手,我想知道将两个表分开的代码是什么?哪几行呢?
=DGET(donationDB,Donations!B1,Quickbooks!A7:C8)
由于
答案 0 :(得分:0)
您需要创建两个单独的表。我建议您在单独的css文件中进行所有样式设置,并将其包含在html中以获得更清晰的代码。
<table border="1" width="35%" cellspacing="10" cellpadding="5" style="margin-bottom: 20px">
<tr>
<th colspan="2"><h3>Future Car's</h3></th>
<td>Lincoln</td>
<td>BMW</td>
<td>Mercedes</td>
</tr>
<tr>
<th colspan="2"><h3>Plan's for the future</h3></th>
<td>Web Development Job</td>
<td>San Francisco</td>
<td>Create web sites</td>
</tr>
</table>
<table border="1" width="35%" cellspacing="10" cellpadding="5">
<tr>
<th colspan="2"><h3>Future Car's</h3></th>
<td>Lincoln</td>
<td>BMW</td>
<td>Mercedes</td>
</tr>
<tr>
<th colspan="2"><h3>Plan's for the future</h3></th>
<td>Web Development Job</td>
<td>San Francisco</td>
<td>Create web sites</td>
</tr>
</table>
这将使您的桌子之间的距离达到20px。您可以根据需要进行调整。
答案 1 :(得分:0)
如果我感觉不好,你想要分开行,快速的做法就是制作一个colspan为3且你喜欢的高度的空列;你可以用<br />
填充它, 
是一个不间断的空间。
<table border="1" width="35%" cellspacing="10" cellpadding="5">
<tr>
<th colspan="2"><h3>Future Car's</h3></th>
<td>Lincoln</td>
<td>BMW</td>
<td>Mercedes</td>
</tr>
<td colspan="3" height="30px"> </td>
<tr>
<th colspan="2"><h3>Plan's for the future</h3></th>
<td>Web Development Job</td>
<td>San Francisco</td>
<td>Create web sites</td>
</tr>
</table>