继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

玩转Bootstrap基础——表格

Youwillbethere
关注TA
已关注
手记 6
粉丝 4
获赞 42

Bootstrap为表格不同的样式风格提供了不同的类名,主要包括:

.table:基础表格

.table-striped:斑马线表格

.table-bordered:带边框的表格

.table-hover:鼠标悬停高亮的表格

.table-condensed:紧凑型表格

.table-responsive:响应式表格

响应式表格: 当你的浏览器可视区域小于768px时,表格底部会出现水平滚动条。当你的浏览器可视区域大于768px时,表格底部水平滚动条就会消失。


表格的行元素< tr >提供了五种不同的类名,每种类名控制了行的不同背景颜色,具体说明如下所示:

<table class="table table-bordered table-hover">
  <thead>
    <tr>
      <th>类名</th>
      <th>描述</th>
    </tr>
  </thead>
  <tbody>
    <tr class="active">
      <td>.active</td>
      <td>表示当前活动的信息</td>
    </tr>
    <tr class="success">
      <td>.success</td>
      <td>表示成功或者正确的行为</td>
    </tr>
    <tr class="info">
      <td>.info</td>
      <td>表示中立的信息或行为</td>
    </tr>
    <tr class="warning">
      <td>.warning</td>
      <td>表示警告,需要特别注意</td>
    </tr>
    <tr class="danger">
      <td>.danger</td>
      <td>表示危险或者可能是错误的行为</td>
    </tr>
  </tbody>
</table>

图片描述

表单

水平表单 form-horizontal
内联表单  form-inline
隐藏标签  sr-only

< input >中要写上form-control

<input type="email" class="form-control" placeholder="Enter email">
打开App,阅读手记
3人推荐
发表评论
随时随地看视频慕课网APP