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 次浏览

开启您的职业生涯

完成该课程后获得证书

开始
广告