用标题设置引导面板

请按照以下步骤将Bootstrap面板设置为标题-

  • 使用.panel-heading类将标题容器添加到面板中。

  • 将任何<h1>-<h6>与.panel-title类一起使用以添加预样式的标题。

您可以尝试在Bootstrap中为带有标题的面板运行以下代码-

示例

<!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">
            Tutorials
         </div>
         <div class = "panel-body">
            Learn for free
         </div>
      </div>
         
      <div class = "panel panel-default">
         <div class = "panel-heading">
            <h3 class = "panel-title">
               Quiz
            </h3>
         </div>
               
         <div class = "panel-body">
            Attempt these quizzes
         </div>
      </div>
   </body>
</html>