aboutsummaryrefslogtreecommitdiff
path: root/docs/components/responsive-embed.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/components/responsive-embed.md')
-rw-r--r--docs/components/responsive-embed.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/responsive-embed.md b/docs/components/responsive-embed.md
index 5ad5aa84d..d2572431e 100644
--- a/docs/components/responsive-embed.md
+++ b/docs/components/responsive-embed.md
@@ -5,7 +5,7 @@ title: Responsive embed
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>`, and `<object>` elements; optionally use an explicit descendant class `.embed-responsive-item` when you want to match the styling for other attributes.
+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.
@@ -20,11 +20,11 @@ Aspect ratios can be customized. There are two available in Bootstrap, 16x9 and
{% highlight html %}
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
- <iframe class="embed-responsive-item" src="…"></iframe>
+ <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>
+ <iframe class="embed-responsive-item" src="..."></iframe>
</div>
{% endhighlight %}