bootstrap table表头背景色
时间: 2023-08-12 17:09:41 浏览: 161
点击按钮设置表格背景色
4星 · 用户满意度95%
要设置Bootstrap表格的表头背景色,您可以使用自定义CSS样式来实现。以下是一个示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<style>
.table-header {
background-color: #f5f5f5; /* 设置表头的背景色 */
}
</style>
</head>
<body>
<table class="table">
<thead>
<tr class="table-header">
<th>表头1</th>
<th>表头2</th>
<th>表头3</th>
</tr>
</thead>
<tbody>
<tr>
<td>数据1</td>
<td>数据2</td>
<td>数据3</td>
</tr>
<tr>
<td>数据4</td>
<td>数据5</td>
<td>数据6</td>
</tr>
</tbody>
</table>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>
```
在上面的示例中,我们使用了自定义CSS样式 `.table-header` 来设置表头的背景色为 `#f5f5f5`。您可以根据需要修改 `.table-header` 的样式来设置您想要的背景色。
阅读全文