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

36 lines
1.3 KiB
Markdown
Raw Normal View History

2014-07-14 16:14:48 +00:00
---
layout: page
title: Jumbotron
---
2014-03-17 02:03:53 +00:00
2014-07-14 16:14:48 +00:00
A lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site.
{% example html %}
2014-03-17 02:03:53 +00:00
<div class="jumbotron">
<h1 class="jumbotron-heading">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>
<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 %}
To make the jumbotron full width, and without rounded corners, place it outside all `.container`s and instead add a `.container` within.
{% highlight html %}
2014-03-17 02:03:53 +00:00
<div class="jumbotron">
<div class="container">
...
</div>
</div>
{% endhighlight %}
Jumbotrons also come with an adaptive `hr`—just add `.jumbotron-hr` to the element and the `border-top-color` will be tinted based on the jumbotron background.
{% example html %}
<div class="jumbotron">
<h1 class="jumbotron-heading">Jumbotron <code>hr</code></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>
<hr class="jumbotron-hr">
<p class="lead"><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
</div>
2014-07-14 16:14:48 +00:00
{% endexample %}