Skip to main content

table 筆記

remove border

如果在 table 中有 border 間細可以透過此方式把 border width remove 在切 mail 的版面時,非常需要注意此細節 HTML Table cellspacing 屬性 - Wibibi HTML Table cellspacing 屬性 - Wibibi

<table border="0" cellpadding="0" cellspacing="0" role="presentation"></table>

table 的內容位置

align="left"

<table class="w-full">
<thead>
<tr class="border-b broder-black-E">
<th align="left">name</th>
<th align="left">age</th>
</tr>
</thead>
<tbody>
<tr>
<td>thomas</td>
<td>18</td>
</tr>
</tbody>
</table>