2016年1月5日 星期二

HTML Table cellspacing CSS 替代語法程式碼紀錄

程式碼記錄:HTML Table cellspacing CSS 替代語法程式碼紀錄

<table style="border-spacing:1px;" border="1">
<tr><td>將 border-spacing 設為 10px 的效果</td><td>將 border-spacing 設為 10px 的效果</td></tr>
<tr><td>將 border-spacing 設為 10px 的效果</td><td>將 border-spacing 設為 10px 的效果</td></tr>
</table>
<table style="border-spacing:10px;" border="1">
<tr><td>將 border-spacing 設為 10px 的效果</td><td>將 border-spacing 設為 10px 的效果</td></tr>
<tr><td>將 border-spacing 設為 10px 的效果</td><td>將 border-spacing 設為 10px 的效果</td></tr>
</table>

以上程式碼為HTML Table cellspacing CSS 替代語法的範例程式碼。