bootstrap table-striped
时间: 2023-07-05 13:32:34 浏览: 186
Bootstrap table-striped 是一个 Bootstrap 框架提供的表格样式类,用于为表格的每一行设置交替的背景颜色。它可以使表格更加美观和易于阅读。在使用时,只需要在表格的 class 属性中添加 table-striped 即可。例如:
```
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
```
这样就可以为表格的每一行设置交替的背景颜色了。
相关问题
table table-striped table-hover table-bordered
在HTML表格布局中,`table`, `table-striped`, `table-hover`, 和 `table-bordered` 是Bootstrap框架提供的CSS类,用于美化和控制表格的样式。下面是对它们的简单解释:
1. `table`: 这是最基本的表格样式,设置了默认的表格外观,包括边框和内间距等。
2. `table-striped`: 当应用此类时,表格中的行会被交替设置为浅色背景和深色背景,形成明显的条纹效果,这通常用于增强视觉层次感和易读性。
3. `table-hover`: 当鼠标悬停在表行上时,该行的背景颜色会发生改变,增加交互性和动态感,用户可以快速识别选中的行。
4. `table-bordered`: 此类将添加边框样式到表格的每一行和列,使其看起来更清晰和结构化。
例如,如果你想要创建一个带网格效果、鼠标悬停时有反应并且四周边框明确的表格,你可以这样写:
```html
<table class="table table-striped table-hover table-bordered">
<!-- 表格内容 -->
</table>
```
table-striped table-dark
table-striped和table-dark是Bootstrap组件中的两个类名,用于设置表格的样式。
table-striped类用于给表格的每一行添加斑马纹效果,即相邻行的背景颜色不同,以增加表格的可读性。
table-dark类用于设置表格的背景颜色为深灰色,可以用于突出显示表格内容或与其他元素进行对比。
以下是一个演示例子:
```html
<table class="table table-striped table-dark">
<thead>
<tr>
<th scope="col">姓名</th>
<th scope="col">年龄</th>
<th scope="col">性别</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>25</td>
<td>男</td>
</tr>
<tr>
<td>李四</td>
<td>30</td>
<td>女</td>
</tr>
<tr>
<td>王五</td>
<td>28</td>
<td>男</td>
</tr>
</tbody>
</table>
```
这个例子展示了一个带有斑马纹效果和深灰色背景的表格。
阅读全文