diff --git a/docs/content/figures.md b/docs/content/figures.md index d572705189672e5cf78452a87f6c926a09089a97..36f431d192410448b5c8b40f8fc0699a3ae46a1d 100644 --- a/docs/content/figures.md +++ b/docs/content/figures.md @@ -10,7 +10,7 @@ Use the included `.figure` , `.figure-img` and `.figure-caption` classes to prov {% example html %} <figure class="figure"> - <img data-src="holder.js/400x300" class="figure-img img-fluid img-rounded" alt="A generic square placeholder image with rounded corners in a figure."> + <img data-src="holder.js/400x300" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure."> <figcaption class="figure-caption">A caption for the above image.</figcaption> </figure> {% endexample %} @@ -19,7 +19,7 @@ Aligning the figure's caption is easy with our [text utilities]({{ site.baseurl {% example html %} <figure class="figure"> - <img data-src="holder.js/400x300" class="figure-img img-fluid img-rounded" alt="A generic square placeholder image with rounded corners in a figure."> + <img data-src="holder.js/400x300" class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure."> <figcaption class="figure-caption text-xs-right">A caption for the above image.</figcaption> </figure> {% endexample %} diff --git a/docs/content/images.md b/docs/content/images.md index 905ff337b180aa0705ac3aefe19a1719db4b0fd0..b710fcfc508f8ad9b75ba72db597571941042be8 100644 --- a/docs/content/images.md +++ b/docs/content/images.md @@ -34,13 +34,13 @@ In Internet Explorer 9-10, SVG images with `.img-fluid` are disproportionately s Add classes to an `<img>` element to easily style images in any project. <div class="bd-example bd-example-images"> - <img data-src="holder.js/200x200" class="img-rounded" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/200x200" class="rounded" alt="A generic square placeholder image with rounded corners"> <img data-src="holder.js/200x200" class="img-circle" alt="A generic square placeholder image where only the portion within the circle circumscribed about said square is visible"> <img data-src="holder.js/200x200" class="img-thumbnail" alt="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera"> </div> {% highlight html %} -<img src="..." alt="..." class="img-rounded"> +<img src="..." alt="..." class="rounded"> <img src="..." alt="..." class="img-circle"> <img src="..." alt="..." class="img-thumbnail"> {% endhighlight %} @@ -50,31 +50,31 @@ Add classes to an `<img>` element to easily style images in any project. Align images with the [helper float classes]({{ site.baseurl }}/components/utilities/#responsive-floats) or [text alignment classes]({{ site.baseurl }}/components/utilities/#text-alignment). `block`-level images can be centered using [the `.mx-auto` margin utility class]({{ site.baseurl }}/components/utilities/#horizontal-centering). <div class="bd-example bd-example-images"> - <img data-src="holder.js/200x200" class="img-rounded pull-xs-left" alt="A generic square placeholder image with rounded corners"> - <img data-src="holder.js/200x200" class="img-rounded pull-xs-right" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/200x200" class="rounded pull-xs-left" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/200x200" class="rounded pull-xs-right" alt="A generic square placeholder image with rounded corners"> </div> {% highlight html %} -<img src="..." class="img-rounded pull-xs-left" alt="..."> -<img src="..." class="img-rounded pull-xs-right" alt="..."> +<img src="..." class="rounded pull-xs-left" alt="..."> +<img src="..." class="rounded pull-xs-right" alt="..."> {% endhighlight %} <div class="bd-example bd-example-images"> - <img data-src="holder.js/200x200" class="img-rounded mx-auto d-block" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/200x200" class="rounded mx-auto d-block" alt="A generic square placeholder image with rounded corners"> </div> {% highlight html %} -<img src="..." class="img-rounded mx-auto d-block" alt="..."> +<img src="..." class="rounded mx-auto d-block" alt="..."> {% endhighlight %} <div class="bd-example bd-example-images"> <div class="text-xs-center"> - <img data-src="holder.js/200x200" class="img-rounded" alt="A generic square placeholder image with rounded corners"> + <img data-src="holder.js/200x200" class="rounded" alt="A generic square placeholder image with rounded corners"> </div> </div> {% highlight html %} <div class="text-xs-center"> - <img src="..." class="img-rounded" alt="..."> + <img src="..." class="rounded" alt="..."> </div> {% endhighlight %}