• Bootstrap5 表格


    Bootstrap5 基础表格

    Bootstrap5 通过 .table 类来设置基础表格的样式,实例如下:

    实例

    <thead>
    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    条纹表格

    通过添加 .table-striped 类,您将在  内的行上看到条纹,如下面的实例所示:

    实例

    <tbody>
    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    带边框表格

    .table-bordered 类可以为表格添加边框

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    鼠标悬停状态表格

    .table-hover 类可以为表格的每一行添加鼠标悬停效果(灰色背景):

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    黑色背景表格

    .table-dark 类可以为表格添加黑色背景:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    黑色条纹表格

    联合使用 .table-dark 和 .table-striped 类可以创建黑色的条纹表格:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    鼠标悬停效果 - 黑色背景表格

    联合使用 .table-dark 和 .table-hover 类可以设置黑色背景表格的鼠标悬停效果:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    无边框表格

    .table-borderless 类可以设置一个无边框的表格:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    指定意义的颜色类

    通过指定意义的颜色类可以为表格的行或者单元格设置颜色:

    实例

    Firstname Lastname Email
    Default Defaultson def@somemail.com
    Primary Joe joe@example.com
    Success Doe john@example.com
    Danger Moe mary@example.com
    Info Dooley july@example.com
    Warning Refs bo@example.com
    Active Activeson act@example.com
    Secondary Secondson sec@example.com
    Light Angie angie@example.com
    Dark Bo bo@example.com


    尝试一下 »

    下表列出了表格颜色类的说明:

    类名描述
    .table-primary蓝色: 指定这是一个重要的操作
    .table-success绿色: 指定这是一个允许执行的操作
    .table-danger红色: 指定这是可以危险的操作
    .table-info浅蓝色: 表示内容已变更
    .table-warning橘色: 表示需要注意的操作
    .table-active灰色: 用于鼠标悬停效果
    .table-secondary灰色: 表示内容不怎么重要
    .table-light浅灰色,可以是表格行的背景
    .table-dark深灰色,可以是表格行的背景

    表头颜色

    我们也可以设置表头的颜色,例如 .table-dark 类用于给表头添加黑色背景, .table-light 类用于给表头添加灰色背景:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com
    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    较小的表格

    .table-sm 类用于通过减少内边距来设置较小的表格:

    实例

    Firstname Lastname Email
    John Doe john@example.com
    Mary Moe mary@example.com
    July Dooley july@example.com


    尝试一下 »


    响应式表格

    .table-responsive 类用于创建响应式表格:在屏幕宽度小于 992px 时会创建水平滚动条,如果可视区域宽度大于 992px 则显示不同效果(没有滚动条):

    实例

    # Firstname Lastname Age City Country Sex Example Example Example Example
    1 Anna Pitt 35 New York USA Female Yes Yes Yes Yes


    尝试一下 »

    你可以通过以下类设定在指定屏幕宽度下显示滚动条:

    类名屏幕宽度
    .table-responsive-sm< 576px
    .table-responsive-md< 768px
    .table-responsive-lg< 992px
    .table-responsive-xl< 1200px
    .table-responsive-xxl< 1400px
  • 相关阅读:
    大数据课程K15——Spark的TF-IDF计算Term权重
    按键检测|中断检测
    解线性方程组python实现直接分解法(Doolittle,克劳特,追赶法)
    轻松管理Web服务器:Linux Apache技巧与技术
    使用 Helm3 部署 Loki
    Ubtunu排查磁盘空间是否已满—并清理的方式
    Zookeeper篇---第十二篇
    mybatis02
    通过uc.js实现pc firefox页面向下滚动自动隐藏导航栏,复刻firefox移动版的丝滑体验
    实时人脸五观检测:基于libfacedetection(CNN模型)
  • 原文地址:https://blog.csdn.net/T0620514/article/details/128158371