<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>响应式表格布局</title>

<link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">  

</head>

<body>

<div class="container">

<table class="table table-responsive">

<caption>响应式表格布局</caption>

<thead>

   <tr>

     <th>名称</th>

     <th>城市</th>

     <th>邮编</th>

   </tr>

</thead>

<tbody>

   <tr class="active">

     <td>Tanmay</td>

     <td>Bangalore</td>

     <td>560001</td>

   </tr>

   <tr class="success">

     <td>Sachin</td>

     <td>Mumbai</td>

     <td>400003</td>

   </tr>

   <tr class="warning">

     <td>Uma</td>

     <td>Pune</td>

     <td>411027</td>

   </tr>

   <tr class="danger">

     <td>suyanzhu</td>

     <td>xuzhou</td>

     <td>221400</td>

   </tr>

</tbody>

</table>

</div>

    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>

  <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</body>

</html>

QQ截图20181015215725.jpg