Bootstrap学习(二)

表格

基本的表格

<table class="table">
  <caption>基本的表格布局</caption>
  <thead>
    <tr>
      <th>编号</th>
      <th>城市</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>北京</td>
    </tr>
    <tr>
      <td>2</td>
      <td>上海</td>
    </tr>
  </tbody>
</table>

用于表格的样式

用于<tr><th><td>的样式

<div class="table-responsive"> 可以让表格水平滚动以适应小型设备(小于 768px)

猜你喜欢

转载自blog.csdn.net/liuzhe465/article/details/80844363
今日推荐