Table Dreamweaver 中的高度,无法使用 <p 样式设置 table 高度
Table heights in Dreamweaver, Trouble setting table height using <p style
我正在使用 table 在 Dreamweaver 中处理电子邮件签名。当我添加 < p =style 标签来设置我的字体大小、颜色等时,我的 table 高度发生了变化,我无法找到使它们再次变短以使文本正确堆叠的方法。我尝试了一些我在堆栈溢出时发现的解决方案,但它们似乎不起作用。问题是 table 的高度在每行文本之间产生了太多 space 。这是它的样子:
table 行的代码如下所示:
<tr>
<td colspan="5"> <p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;"> Best regards, </p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 15px;">
<strong>Name Lastname</strong></p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;">Title here</p> </td>
</tr>
<tr>
在此代码中更改 table 高度的正确方法是什么?
您需要编辑文本的行高。当您增加字体大小时,行高会根据字体大小增加。
<tr>
<td colspan="5"> <p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px; line-height: 5px;"> Best regards, </p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 15px; line-height: 5px;">
<strong>Name Lastname</strong></p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px; line-height: 5px;">Title here</p> </td>
</tr>
<tr>
我正在使用 table 在 Dreamweaver 中处理电子邮件签名。当我添加 < p =style 标签来设置我的字体大小、颜色等时,我的 table 高度发生了变化,我无法找到使它们再次变短以使文本正确堆叠的方法。我尝试了一些我在堆栈溢出时发现的解决方案,但它们似乎不起作用。问题是 table 的高度在每行文本之间产生了太多 space 。这是它的样子:
table 行的代码如下所示:
<tr>
<td colspan="5"> <p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;"> Best regards, </p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 15px;">
<strong>Name Lastname</strong></p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px;">Title here</p> </td>
</tr>
<tr>
在此代码中更改 table 高度的正确方法是什么?
您需要编辑文本的行高。当您增加字体大小时,行高会根据字体大小增加。
<tr>
<td colspan="5"> <p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px; line-height: 5px;"> Best regards, </p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 15px; line-height: 5px;">
<strong>Name Lastname</strong></p></td>
</tr>
<tr> </tr>
<tr>
<td colspan="5"><p style="font-family:Arial, Helvetica, sans-serif; color: #000000; font-size: 12px; line-height: 5px;">Title here</p> </td>
</tr>
<tr>