我在使用我的HTML電子郵件模板時遇到了一些困難。我是這個HTML世界的新手,這是我的第一個電子郵件模板。我無法使用<div>
標籤這一事實讓我很頭疼。表格HTML邊框
我認爲如果你看截圖就會更好。我在那裏很好地解釋了我想要的。以下是圖像:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Fashion Newsletter</title>
<style type="text/css" >
body {
font: Georgia, "Times New Roman", Times, serif;
}
</style>
</head>
<body>
<!--For Three Columns-->
<table align="center" width="600" cellpadding="0" cellspacing="0" bgcolor="#000" >
<tr>
<td width="180">
<a href="#link">
<img src="images/180.gif" />
</a>
</td>
<td width="180">
<a href="#link">
<img src="images/180.gif" />
</a>
</td>
<td width="180"><p class="three">
<a href="#link">
<img src="images/180.gif" />
</a>
</p></td>
</tr>
</table>
</body>
</html>
我刪除代碼「獨柱」表,因爲單個列代碼工作的罰款。我還有意添加bgcolor="#000"
,以便我可以看看發生了什麼。
摘要:
- 如果你看着截圖,我基本上要減小兩個
<td>
標籤,即兩列之間的空間。 - 我想刪除
我可能是錯的,但是,它看起來像你設置你的表爲600px,每列爲180px。這可能會導致列之間的黑色區域。 – SlitCanvas