Bootstrap超大屏幕的实现代码
boonyaxnn 人气:0本文实例为大家分享了Bootstrap超大屏幕展示的具体代码,供大家参考,具体内容如下
<!DOCTYPE html> <html> <head> <title>Bootstrap-超大屏幕(Jumbotron)</title> <meta charset="utf-8"> <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" > </head> <body> <!--为了获得占用全部宽度且不带圆角的超大屏幕,请在所有的 .container class 外使用 .jumbotron class--> <div class="jumbotron"> <div class="container"> <h1>欢迎登陆页面!</h1> <p>这是一个超大屏幕的实例。</p> <p><a class="btn btn-primary btn-lg" role="button">学习更多</a></p> </div> </div> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
效果图:
加载全部内容