twbs--bootstrap/docs/components/jumbotron.md

33 lines
1.1 KiB
Markdown
Raw Normal View History

2014-07-14 16:14:48 +00:00
---
layout: page
title: Jumbotron
group: components
2014-07-14 16:14:48 +00:00
---
2014-03-17 02:03:53 +00:00
2014-12-31 18:20:12 +00:00
A lightweight, flexible component that can optionally extend the entire viewport to showcase key marketing messages on your site.
2014-07-14 16:14:48 +00:00
## Example
2014-07-14 16:14:48 +00:00
{% example html %}
2014-03-17 02:03:53 +00:00
<div class="jumbotron">
2015-08-13 03:28:46 +00:00
<h1 class="display-3">Hello, world!</h1>
<p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
2015-08-13 03:28:46 +00:00
<hr class="m-y-md">
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</p>
2014-03-17 02:03:53 +00:00
</div>
2014-07-14 16:14:48 +00:00
{% endexample %}
2014-12-31 18:20:12 +00:00
To make the jumbotron full width, and without rounded corners, add the `.jumbotron-fluid` modifier class and add a `.container` or `.container-fluid` within.
2014-07-14 16:14:48 +00:00
2014-12-31 18:20:12 +00:00
{% example html %}
<div class="jumbotron jumbotron-fluid">
2014-03-17 02:03:53 +00:00
<div class="container">
2015-08-13 03:28:46 +00:00
<h1 class="display-3">Fluid jumbotron</h1>
2014-12-31 18:20:12 +00:00
<p class="lead">This is a modified jumbotron that occupies the entire horizontal space of it's parent.</p>
2014-03-17 02:03:53 +00:00
</div>
</div>
2014-12-31 18:20:12 +00:00
{% endexample %}