<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h1>基础表格</h1>
<p>.table 类为表格添加了基本样式(浅色内边距和水平分隔线):</p>
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bill</td>
<td>Gates</td>
<td>bill@example.com</td>
</tr>
<tr>
<td>Steve</td>
<td>Jobs</td>
<td>steve@example.com</td>
</tr>
<tr>
<td>Elon</td>
<td>Musk</td>
<td>elon@example.com</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>