<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!--设置背景-->
<style>
body
{
background-image: url('images/蓝天.png');
}
</style>
</head>
<body>
<div class="container">
<div class="card-group">
<table border="1">
<tr>
<th>
第一列表头
</th>
<th>
第二列表头
</th>
<th>
第三列表头
</th>
</tr>
<tr>
<td>
第一列
</td>
<td>
第二列
</td>
<td>
第三列
</td>
</tr>
<tr>
<td>
1
</td>
<td>
2
</td>
<td>
3
</td>
</div>
</tr>
</table>
</div>
</div>
</body>
</html>
效果图: