bootstrap13-邊框表格佈局

技術小牛人發表於2017-11-13

<!DOCTYPE html>

<html>

<head>

<meta charset=”utf-8″>

<title>bootstrap13</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-bordered”>

<caption>邊框表格佈局</caption>

<thead>

    <tr>

       <th>名稱</th>

       <th>城市</th>

       <th>郵編</th>

    </tr>

</thead>

<tbody>

    <tr>

       <td>Tanmay</td>

       <td>Bangalore</td>

       <td>560001</td>

    </tr>

    <tr>

       <td>Sachin</td>

       <td>Mumbai</td>

       <td>400003</td>

    </tr>

    <tr>

       <td>Uma</td>

       <td>Pune</td>

       <td>411027</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>

本文轉自  素顏豬  51CTO部落格,原文連結:http://blog.51cto.com/suyanzhu/1895685


相關文章