載入程式中的 table-bordered 類


若要實現 table-bordered 類,你可以嘗試執行以下程式碼 −

示例

 動態演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Table</title>
      <meta name = "viewport" content = "width=device-width, initial-scale = 1">
      <link rel = "stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <table class = "table table-bordered table-striped">
         <caption>Footballer Rank</caption>
            <thead>
               <tr>
                  <th>Footballer</th>
                  <th>Rank</th>
                  <th>Country</th>
               </tr>
            </thead>
            <tbody>
               <tr>
                  <td>Messi</td>
                  <td>1</td>
                  <td>Argentina</td>
               </tr>
               <tr>
                  <td>Neymar</td>
                  <td>2</td>
                  <td>Brazil</td>
               </tr>
               <tr>
                  <td>Ronaldo</td>
                  <td>3</td>
                  <td>Portugal</td>
               </tr>
            </tbody>
      </table>
   </body>
</html>

更新於: 2020 年 6 月 12 日

243 次瀏覽

開啟你的 職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.