用CSS来造细线表格<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>css造细线表格</title>
<style type="text/css">
<!--
table#onepx {
border-bottom: 1px solid red;
border-left: 1px solid red;
}
table#onepx td {
border-top: 1px solid red;
border-right: 1px solid red;
}
.thin{background:#000}
.thin td{background:#FFF}-->
</style>
</head>
<body>
第一种:
<table width="200" border="0" cellspacing="1" cellpadding="0" id="onepx">
 
<tr>
    <td>test </td>
    <td> test</td>
    <td> test</td>
  </tr>
</table>
<p>&nbsp;</p>
第二种:
<table width="200" border="0" cellspacing="1" cellpadding="0" class="thin">
  
<tr>
    <td>test </td>
    <td> test</td>
    <td> test</td>
  </tr>
</table>
</body>
</html>

说明:
①学习table的id的作用.
②学习class属性的作用.