0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

carousel.md: Remove duplicate bd-example div. (#29341)

The example shortcode already adds this.
This commit is contained in:
XhmikosR 2019-08-30 17:21:47 +03:00
parent f732bf025a
commit 28758a03f0

View File

@ -113,7 +113,6 @@ You can also add the indicators to the carousel, alongside the controls, too.
Add captions to your slides easily with the `.carousel-caption` element within any `.carousel-item`. They can be easily hidden on smaller viewports, as shown below, with optional [display utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/utilities/display/). We hide them initially with `.d-none` and bring them back on medium-sized devices with `.d-md-block`.
{% capture example %}
<div class="bd-example">
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
@ -152,7 +151,6 @@ Add captions to your slides easily with the `.carousel-caption` element within a
<span class="sr-only">Next</span>
</a>
</div>
</div>
{% endcapture %}
{% include example.html content=example %}