Html 页面居中细表格
表格设计工具
Microsoft Visual Studio 2012
表格居中
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>表格居中</title>
<style>
table {
border-collapse: collapse;
}
table, td, th {
border: 1px solid black;
}
</style>
</head>
<body>
</br>
<center>
<div>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>
</div>
</center>
</body>
</html>

浙公网安备 33010602011771号