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>
广告