03.borderプロパティは、設定をまとめて指定します。


※★CSS
table {
	width: 300px;
	height: 100px;
	border: 1px solid #cccccc;
}
th,td {
	border: 1px solid #cccccc;
}


※★HTML
<table>
<tr>
	<th>見出し</th>
	<th>見出し</th>
</tr>
<tr>
	<td>データ</td>
	<td>データ</td>
</tr>
</table>

見出し 見出し
データ データ