服務熱線
153 8323 9821
雖然近幾年流行DIV+CSS做的網頁,但表格還是有一席之地的,表格適合于顯示數據,整齊、直觀。用CSS給表格加上細線,表格就更完美了。在網頁設計中,可以將表格與DIV結合起來,合理、靈活運用。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
<style type="text/css">
table{ border-collapse:collapse; margin:0 auto;}
table td{ border:1px solid #CCC; line-height:25px; }
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>