以纯文本模式删除表(html)

时间:2016-07-15 14:50:59

标签: html

我在同一行(td)中创建了一个包含7列(tr)的HTML邮件签名。 但是当我进入纯文本模式时,7列没有删除,并且空格仍处于纯文本模式。

如何在纯文本模式下删除行之间的间隙?

好的,我已将代码放入框中。您可以看到我已插入几列以在我的名字后添加6种颜色。但在文本版本中,我发现我的工作职位(硬件技术人员)和公司名称之间存在很大差距。这是我的问题。如果我可以用(div)选项来支持这个列,那对我来说也是一个很大的帮助。我想让这段代码与其他电子邮件客户端更加兼容。

<html>
<body>
	  
	<table class="MsoNormalTable" width="400" cellpadding="0" cellspacing="0" border="0" style="font-size:12px; font-family: arial;">
	<tbody>
		<tr style="height: 61px">
    	<td style="width:160px;height:60px;border:none; background: #9CC2E5;padding:0px 0px 0px 2px" nowrap="nowrap" width="160">
			<div style="color: black; font-size: 16; font-weight: bold; font-family:arial;">Nirosh Chaminda<br></div>
			<div style="color: black; font-size: 12; font-style: italic;" >Hardware technician<br></b></div></td>
		<td style="width:17px;height:60px;border:none; background: #5B9BD5;font-size: 0; padding:0cm 0cm 0cm 0cm" width="17"></td>
		<td style="width:22px;height:60px;border:none; background: #BDD6EE;font-size: 0; padding:0cm 0cm 0cm 0cm" width="22"></td>
		<td style="width:32px;height:60px;border:none; background: #9CC2E5;font-size: 0; padding:0cm 0cm 0cm 0cm" width="32"></td>
		<td style="width:45px;height:60px;border:none; background: #4472C4;font-size: 0; padding:0cm 0cm 0cm 0cm" width="45"></td>
		<td style="width:65px;height:60px;border:none; background: #294EC7;font-size: 0; padding:0cm 0cm 0cm 0cm" width="65"></td>
		<td style="width:128px;height:60px;border:none; background: #DEEAF6;font-size: 0; padding:0cm 0cm 0cm 0cm" width="128"></td>
	</tr>

	<tr>
		<td colspan="7" style="padding: 2px; font-size: 15px; font-weight:bold; background: white">Tasking Benedicts.<br/></td>
	</tr>
	<tr>
		<td colspan="7" style="padding: 2px; font-size: 12px; background: white">Via di Roma, 32<br/></td>
	</tr>
	
	<tr>
		<td colspan="7" style="padding: 2px; font-size: 12px; background: white">Tel: 050 42581 / Fax: 050 2206529<br/></td>
	</tr>
	
	
	<tr>
    	<td style="width:160px;height:7px;border:none; background: #9CC2E5;padding:0px 0px 0px 0px" width="160">
		<td style="width:17px;height:7px;border:none; background: #5B9BD5;padding:0cm 0cm 0cm 0cm" width="17"></td>
		<td style="width:22px;height:7px;border:none; background: #BDD6EE;padding:0cm 0cm 0cm 0cm" width="22"></td>
		<td style="width:32px;height:7px;border:none; background: #9CC2E5;padding:0cm 0cm 0cm 0cm" width="32"></td>
		<td style="width:45px;height:7px;border:none; background: #4472C4;padding:0cm 0cm 0cm 0cm" width="45"></td>
		<td style="width:65px;height:7px;border:none; background: #294EC7;padding:0cm 0cm 0cm 0cm" width="65"></td>
		<td style="width:128px;height:7px;border:none; ;background: #DEEAF6;padding:0cm 0cm 0cm 0cm" width="128"></td>
	</tr>
	
	<tr>
		
	</tr>
	
	<tr>
		<td colspan="7" style="text-align: justify; font-size:10; font-family:Arial; verdana; sans-serif; padding:0cm 0cm 0cm 0cm" width="400">
                    <p>This e-mail is confidential and may also contain privileged information. If you are not the intended recipient you are not authorised to read, print, save, process or disclose this message. If you have received this message by mistake, please inform the sender immediately and delete this e-mail, its attachments and any copies. Any use, distribution, reproduction or disclosure by any person other than the intended recipientis strictly prohibited and the person responsible may incur penalties. Thank you!<o:p></o:p></p>
		</td>
	</tr>
	</div>
	</div>
	</tbody>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

好的,我已将代码放入框中。您可以看到我已插入几列以在我的名字后添加6种颜色。但在文本版本中,我发现我的工作职位(硬件技术人员)和公司名称之间存在很大差距。这是我的问题。如果我可以用(div)选项来支持这个列,那对我来说也是一个很大的帮助。我想让这段代码与其他电子邮件客户端更加兼容。