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>
posted @ 2022-04-12 10:02  shenshu  阅读(90)  评论(0)    收藏  举报