mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
71 lines
2.6 KiB
Markdown
71 lines
2.6 KiB
Markdown
|
---
|
||
|
layout: docs
|
||
|
title: Responsive helpers
|
||
|
group: utilities
|
||
|
---
|
||
|
|
||
|
## Responsive embeds
|
||
|
|
||
|
Allow browsers to determine video or slideshow dimensions based on the width of their containing block by creating an intrinsic ratio that will properly scale on any device.
|
||
|
|
||
|
Rules are directly applied to `<iframe>`, `<embed>`, `<video>`, and `<object>` elements; optionally use an explicit descendant class `.embed-responsive-item` when you want to match the styling for other attributes.
|
||
|
|
||
|
**Pro-Tip!** You don't need to include `frameborder="0"` in your `<iframe>`s as we override that for you.
|
||
|
|
||
|
{% example html %}
|
||
|
<div class="embed-responsive embed-responsive-16by9">
|
||
|
<iframe class="embed-responsive-item" src="//www.youtube.com/embed/zpOULjyy-n8?rel=0" allowfullscreen></iframe>
|
||
|
</div>
|
||
|
{% endexample %}
|
||
|
|
||
|
Aspect ratios can be customized with modifier classes.
|
||
|
|
||
|
{% highlight html %}
|
||
|
<!-- 21:9 aspect ratio -->
|
||
|
<div class="embed-responsive embed-responsive-21by9">
|
||
|
<iframe class="embed-responsive-item" src="..."></iframe>
|
||
|
</div>
|
||
|
|
||
|
<!-- 16:9 aspect ratio -->
|
||
|
<div class="embed-responsive embed-responsive-16by9">
|
||
|
<iframe class="embed-responsive-item" src="..."></iframe>
|
||
|
</div>
|
||
|
|
||
|
<!-- 4:3 aspect ratio -->
|
||
|
<div class="embed-responsive embed-responsive-4by3">
|
||
|
<iframe class="embed-responsive-item" src="..."></iframe>
|
||
|
</div>
|
||
|
|
||
|
<!-- 1:1 aspect ratio -->
|
||
|
<div class="embed-responsive embed-responsive-1by1">
|
||
|
<iframe class="embed-responsive-item" src="..."></iframe>
|
||
|
</div>
|
||
|
{% endhighlight %}
|
||
|
|
||
|
## Responsive floats
|
||
|
|
||
|
These utility classes float an element to the left or right, or disable floating, based on the current viewport size using the [CSS `float` property](https://developer.mozilla.org/en-US/docs/Web/CSS/float). `!important` is included to avoid specificity issues. These use the same viewport width breakpoints as the grid system.
|
||
|
|
||
|
Two similar non-responsive Sass mixins (`pull-left` and `pull-right`) are also available.
|
||
|
|
||
|
{% example html %}
|
||
|
<div class="pull-xs-left">Float left on all viewport sizes</div><br>
|
||
|
<div class="pull-xs-right">Float right on all viewport sizes</div><br>
|
||
|
<div class="pull-xs-none">Don't float on all viewport sizes</div><br>
|
||
|
|
||
|
<div class="pull-sm-left">Float left on viewports sized SM (small) or wider</div><br>
|
||
|
<div class="pull-md-left">Float left on viewports sized MD (medium) or wider</div><br>
|
||
|
<div class="pull-lg-left">Float left on viewports sized LG (large) or wider</div><br>
|
||
|
<div class="pull-xl-left">Float left on viewports sized XL (extra-large) or wider</div><br>
|
||
|
{% endexample %}
|
||
|
|
||
|
{% highlight scss %}
|
||
|
// Related simple non-responsive mixins
|
||
|
.element {
|
||
|
@include pull-left;
|
||
|
}
|
||
|
.another-element {
|
||
|
@include pull-right;
|
||
|
}
|
||
|
{% endhighlight %}
|