Bootstrap 類別表


要在 Bootstrap 中建立表格,請使用 .table 類。

你可以嘗試執行以下程式碼來建立表格

線上演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "panel panel-default">
         <div class = "panel-heading">
            <h3 class = "panel-title">Result</h3>
         </div>
         <div class = "panel-body">
            Top Students of batch 2017-18
         </div>
         <table class = "table">
            <tr>
               <th>Student</th>
               <th>Marks</th>
               <th>Rank</th>
            </tr>
            <tr>
               <td>David</td>
               <td>82</td>
               <td>1</td>
            </tr>
            <tr>
               <td>John</td>
               <td>79</td>
               <td>2</td>
            </tr>
            <tr>
               <td>Tom</td>
               <td>76</td>
               <td>3</td>
            </tr>
         </table>
      </div>
   </body>
</html>

更新於:2020-6-12

149 次瀏覽

開啟你的 事業

完成本課程認證

開始
廣告
© . All rights reserved.