2014-07-14 18:14:48 +02:00
---
layout: page
title: Jumbotron
2015-08-06 02:47:45 +02:00
group: components
2014-07-14 18:14:48 +02:00
---
2014-03-17 03:03:53 +01:00
2014-12-31 19:20:12 +01:00
A lightweight, flexible component that can optionally extend the entire viewport to showcase key marketing messages on your site.
2014-07-14 18:14:48 +02:00
2015-01-20 05:03:08 +01:00
## Example
2014-07-14 18:14:48 +02:00
{% example html %}
2014-03-17 03:03:53 +01:00
< div class = "jumbotron" >
2014-09-18 05:03:32 +02:00
< 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 >
2014-11-10 07:02:53 +01:00
< p class = "lead" > < a class = "btn btn-primary btn-lg" href = "#" role = "button" > Learn more< / a > < / p >
2014-03-17 03:03:53 +01:00
< / div >
2014-07-14 18:14:48 +02:00
{% endexample %}
2014-12-31 19:20:12 +01: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 18:14:48 +02:00
2014-12-31 19:20:12 +01:00
{% example html %}
< div class = "jumbotron jumbotron-fluid" >
2014-03-17 03:03:53 +01:00
< div class = "container" >
2014-12-31 19:20:12 +01:00
< h1 class = "jumbotron-heading" > Fluid jumbotron< / h1 >
< p class = "lead" > This is a modified jumbotron that occupies the entire horizontal space of it's parent.< / p >
2014-03-17 03:03:53 +01:00
< / div >
< / div >
2014-12-31 19:20:12 +01:00
{% endexample %}
2014-09-18 05:03:32 +02:00
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" >
2014-11-10 07:02:53 +01:00
< p class = "lead" > < a class = "btn btn-primary btn-lg" href = "#" role = "button" > Learn more< / a > < / p >
2014-09-18 05:03:32 +02:00
< / div >
2014-07-14 18:14:48 +02:00
{% endexample %}