html表格的css樣式
阿新 • • 發佈:2019-01-24
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>table-test</title>
<style>
table {
border: solid 1px lightblue;
}
</style>
</head>
<body>
<table>
<tr>
<td>hellow</td>
<td>world</td >
<td>hellow</td>
<td>world</td>
</tr>
<tr>
<td>hellow</td>
<td>world</td>
<td>hellow</td>
<td>world</td>
</tr>
<tr>
<td>hellow</td>
<td >world</td>
<td>hellow</td>
<td>world</td>
</tr>
</table>
</body>
</html>
<style>
table, tr {
border: solid 1px lightblue;
}
</style>
<style>
table, tr, td {
border: solid 1px lightblue ;
}
</style>
<style>
table {
border-collapse: collapse; //設定是否將表格邊框摺疊為單一邊框
}
table, tr, td {
border: solid 1px lightblue;
}
</style>