<table>
標籤訂義 HTML 表格table
元素以及一個或多個 tr
、th
或 td
元素組成tr(table row)
元素定義表格行,th(table head)
元素定義表頭,td(table data)
元素定義表格單元caption
、col
、colgroup
、thead
、tfoot
以及 tbody
元素border
--- 規定表格邊框的寬度align
--- 規定表格相對周圍元素的對齊方式 (left,center,right)
valign
--- 垂直,默認是valign="middle"
,可是會修改成valign="top"
cellspacing
--- 規定單元格之間的空間cellpadding
--- 規定單元邊沿與其內容之間的空白width
--- 規定表格的寬度height
--- 規定表格的高度background
--- 背景圖像bgcolor
--- 背景顏色<table border="1" width="600" align="center" bgcolor="#cccccc" cellspacing="10" cellpadding="20">
<tr>
<td>語文</td>
<td>數學</td>
<td>英語</td>
</tr>
</table>
複製代碼
width、height
font-family
font-size
font-weight
color
line-height
border
background-color
background-image
vertical-align
<a href="http://www.eefocus.com" target="_blank">
<img src="http://baidu.com/hao123.png" alt="hao123圖片">
<span>我也能夠是一段話,只是無法自主設置寬度而已</span>
<p>我是一段話...</p>
utf-8
<td style="font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#000000;" >文字</td>
其餘的方式會被無視font-family
屬性不能爲空<table>
佈局,居中顯示使用align="center
body
、meta
和html
之類的標籤,部分郵箱系統會把這些過濾掉flash、java、javascript、frames、iframe、activeX
以及 dhtml
onmouseover
、onmouseout
,即便設定了,也會被過濾掉<td width=15> </td>
或<td height="15"> </td>
,不要使用padding="15px"
--- 防止各個郵箱的解析不一樣<img src="http://www.eefocus.com/logo.png" style="vertical-align:top;display:block;" width="210" height="100" alt="logo"/>
style="vertical-align:top;"
--- 防止圖片之間會有縫隙、變形等顯示異常的狀況display:block
--- 解決Outlook電子郵件客戶中圖片底部增長空白間距的問題width="200 height="200"
或者style="width:200px;height:200px;"
alt="我是幹啥的"
--- 防止圖片沒法加載,也能夠知曉這是作什麼的jpg、png
,儘可能不要使用gif
http/https
開頭的)background-image
(Outlook不顯示,可是能夠顯示背景色:bgColor="f3f3f3"
),直接使用圖片<img src="">
<a href="http://www.eefocus.com">Logo Plus</a>
padding
無效、vertical-align
不能被識別,可定義在td
p
標籤的width
不起做用,可定義在td
<img align="left" />
或 <img align="right" />
時,圖片會脫離文檔流,在其父元素設置了 margin
或 padding
的話,都沒法使其下移,左移或右移margin padding
等屬性,定義寬高的屬性放在td
,定義樣式放在p
或者span
等標籤內節選自:開始製做HTML Email 之郵件設計javascript