Bootstrap CSS组件之大屏幕展播
github_34514750 人气:0在设计网页布局的时候,经常会有大屏内容的显示jumbotron
顾名思义该组件可以增加标题的大小,并为登陆页面内容添加更多的外边距(margin)。
源码中可以看出:
如果jumbotron放在container样式内,则显示圆角;如果不放在里边,则不会显示圆角。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Bootstrap从3.0版本开始全面支持移动平台,贯彻移动先行宗旨 --> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <!-- 超大屏幕jumbotron: 1.创建一个带有 class .jumbotron. 的容器 <div> 2.除了更大的 <h1>,字体粗细 font-weight 被减为 200--> <div class="jumbotron"> <h1>Hello,world!</h1> <p>This is a simple hero unit.</p> <p><button class="btn btn-primary">Learn more</button></p> </div> <!-- bootstrap是基于jQuery--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script> </body> </html>
加载全部内容