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>

更新于: 12-6-2020

189 次查看

开启你的 职业生涯

通过完成课程获得认证

开始
广告