Bootstrap 类 Jumbotron
使用 Bootstrap 中的 jumbotron 类增大标题的尺寸,并为登陆页面内容添加大量空白
页面。
你可以尝试运行以下代码来在 Bootstrap 中实现 .jumbotron 类 −
示例
<!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 = "container"> <div class = "jumbotron"> <h1>Welcome to landing page!</h1> <p>Our first page.</p> <p> <a class = "btn btn-primary btn-lg" role = "button">Click for more</a> </p> </div> </div> </body> </html>
广告