Bootstrap - 表格

作者: 廖马儿 | 来源:发表于2018-01-27 15:09 被阅读11次

    Bootstrap中的表格

    带边框表格 table-bordered   # 就是有分割线
    条纹状表格 table-striped  # 斑马样式
    悬停变色 table-hover  # 
    紧凑风格 table-condensed  # 会矮一点
    

    示例:

    <table class="table table-striped table-bordered table-hover ">
          <thead>
            <tr>
              <th>标题一</th>
              <th>标题二</th>
              <th>标题三</th>
              <th>标题四</th>
              <th>标题五</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td>内容一</td>
              <td>内容二</td>
              <td>内容三</td>
              <td>内容四</td>
              <td>内容五</td>
            </tr>
            <tr>
              <td>内容一</td>
              <td>内容二</td>
              <td>内容三</td>
              <td>内容四</td>
              <td>内容五</td>
            </tr>
          </tbody>
    
        </table>
    
    图片.png

    表格居中对齐:
    http://blog.csdn.net/win_turn/article/details/74160696

    相关文章

      网友评论

        本文标题:Bootstrap - 表格

        本文链接:https://www.haomeiwen.com/subject/brmnaxtx.html