Bootstrap页面标题Page Header的实现方法
boonyaxnn 人气:0本文实例为大家分享了Bootstrap页面标题展示的具体代码,供大家参考,具体内容如下
<!DOCTYPE html> <html> <head> <title>Bootstrap 页面标题(Page Header)</title> <meta charset="utf-8"> <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" > </head> <body> <div class="jumbotron"> <div class="container"> <div class="page-header"> <h1>页面标题 <small>子标题</small> </h1> </div> <p>Bootstrap 页面标题(Page Header.Bootstrap 页面标题(Page Header).Bootstrap 页面标题(Page Header).Bootstrap 页面标题(Page Header).</p> </div> </div> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
如需使用页面标题(Page Header),请把标题放置在带有 class .page-header 的 <div> 中,效果图:
加载全部内容