1. 程式人生 > >html table屬性測試,練習+詳解(親測)

html table屬性測試,練習+詳解(親測)

 
給整個table設定邊框:用border-left;border-right;border-top;border-bottom;分別設定table的邊框,簡寫為border: X px;

表格沒有外邊框,每個tr(每一行)只有下邊框的table設定::

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>test</title>
<style>
.tab
{

}
.tab td
{
height:30px;
border-bottom:5px solid #6AB2E7;

}
table.tab td.head
{
border-top:2px solid #6AB2E7;

}
</style>
</head>

<body>
<table border="0" class="tab" cellpadding="0" cellspacing="0" width="300">
<tr><td class="head" align="right" width="100">專案一:</td><td class="head">bb</td></tr>
<tr><td align="right">專案二:</td><td>dd</td></tr>
<tr><td align="right">專案三:</td><td>dd</td></tr>
</table>
</body>
</html>