bootstrap学习表格

Posted nxzblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap学习表格相关的知识,希望对你有一定的参考价值。

基础样式:

自适应沾满浏览器

    <table class="table">
        <tr>
            <th>序号</th>
            <th>姓名</th>
        </tr>
        <tr>
            <td>11111</td>
            <td>2222</td>
        </tr>
    </table>
//加样式的时候一般先加基础样式,然后再加其他样式

技术图片

带条纹:

    <table class="table table-striped">
        <tr>
            <th>序号</th>
            <th>姓名</th>
        </tr>
        <tr>
            <td>11111</td>
            <td>2222</td>
        </tr>
        <tr>
            <td>11111</td>
            <td>2222</td>
        </tr>
    </table>

技术图片

 

带边框:

table-bordered

技术图片

 

鼠标悬停:table-hover

 

表格行样式:

    <table class="table table-striped table-bordered table-hover">
        <tr class="success">
            <th>序号</th>
            <th>姓名</th>
        </tr>
        <tr class="active">
            <td>11111</td>
            <td>2222</td>
        </tr>
        <tr class="danger">
            <td>11111</td>
            <td>2222</td>
        </tr>
    </table>

技术图片

Class      描述
.active     鼠标悬停在行或单元格上时所设置的颜色
.success     标识成功或积极的动作
.info       标识普通的提示信息或动作
.warning     标识警告或需要用户注意
.danger      标识危险或潜在的带来负面影响的动作

 

响应式表格:

响应式表格需要将table放到div内  且div样式设置为table-responsive即可

<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>

 

以上是关于bootstrap学习表格的主要内容,如果未能解决你的问题,请参考以下文章

bootstrap基础学习五篇

学习 Bootstrap 5 之 Tables

BootStrap实用代码片段(持续总结)

bootstrap学习表格

BootStrap表格

Bootstrap学习笔记