Bootstrap面板页脚类

使用Bootstrap中的.panel-footer 类将页脚设置为面板。

您可以尝试运行以下代码来实现panel-footer类-

示例

<!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">

            Panel heading

         </div>

         <div class = "panel-body">

            Panel content

         </div>

         <div class = "panel-footer">

            Panel footer

         </div>

      </div>

   </body>

</html>

以上是 Bootstrap面板页脚类 的全部内容, 来源链接: utcz.com/z/334744.html

回到顶部