Bootstrap 類 panel-primary 的用法


Bootstrap 中的 panel-primary 類是一種背景狀態類。對,它是藍色的。

你可以嘗試執行以下程式碼在 Bootstrap 中實現一個panel-primary

示例

線上演示

<!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-primary">
         <div class = "panel-heading">
            <h3 class = "panel-title">Panel title</h3>
         </div>
         <div class = "panel-body">
            This is a Basic panel
         </div>
      </div>
   </body>
</html>

更新日期: 2020-06-12

189 次瀏覽

開啟您的職業生涯

完成該課程後獲得證書

開始
廣告
© . All rights reserved.