Bootstrap 面板-默认使用
对于基本的 panel,将类 .panel 添加到 <div> 元素。与此同时,将类 .panel-default 添加到此元素。
你可以尝试运行以下代码来实现 panel-default 类
示例
<!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>
广告