Bootstrap panel-default 的用法
对于一个基本的 panel,给 <div> 元素添加 class .panel。添加以下class .panel-default 至该元素。
您可以尝试运行以下代码以实现一个 panel-default class
示例
<!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-body"> This is demo text in a panel. </div> </div> </body> </html>
广告