html如何做斑马表格

html斑马表格

tr:nth-child(2n){ background: #FFF0F5;}
效果如下:
在这里插入图片描述

Bootstrap是流行的前端开发框架,它提供了一套丰富的组件和工具来帮助开发者快速构建响应式网站。斑马表格是Bootstrap中表格组件的一种视觉样式,通过交替行颜色来提高数据的可读性。下面是一个使用Bootstrap创建斑马表格的基本示例: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Bootstrap 斑马表格示例</title> <!-- 引入Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> </head> <body> <div class="container"> <!-- 带有斑马纹的表格 --> <table class="table table-striped"> <thead> <tr> <th>#</th> <th>姓名</th> <th>职位</th> <th>薪资</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>张三</td> <td>前端开发</td> <td>15000</td> </tr> <tr> <td>2</td> <td>李四</td> <td>后端开发</td> <td>20000</td> </tr> <!-- 更多表格行 --> </tbody> </table> </div> <!-- 引入Bootstrap JS 和依赖的jQuery和Popper.js --> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.9.3/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> </body> </html> ``` 在这个示例中,`table-striped` 类被添加到`<table>`标签上,以启用Bootstrap的斑马纹样式。这个类会在表格的偶数行上应用一个`bg-light` CSS类,从而创建出斑马纹效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值