1. 程式人生 > >用HTML製作細線表格

用HTML製作細線表格

 最近寫了一兩個網頁,把一個簡單的問題寫在這裡,只是自娛。

程式碼如下:


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>無標題文件</title>
</head>

<body>
<table width="200" border="0" cellpadding="0" cellspacing="1" bgcolor="#336699">
  <tr bgcolor="#FFFFFF">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr bgcolor="#FFFFFF">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>