aboutsummaryrefslogtreecommitdiff
path: root/docs/content/images.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-09-08 22:16:28 -0700
committerMark Otto <[email protected]>2016-09-08 22:16:28 -0700
commit0be876359ed4ed7c8a3d315a6ef9a04eede8d765 (patch)
treee581144cab3da2959274f18206c2f01a14fee50d /docs/content/images.md
parentae784c9521101c391ecc98e906ddf18e6aeb459b (diff)
downloadbootstrap-0be876359ed4ed7c8a3d315a6ef9a04eede8d765.tar.xz
bootstrap-0be876359ed4ed7c8a3d315a6ef9a04eede8d765.zip
Update docs to use new spacing util class names
Diffstat (limited to 'docs/content/images.md')
-rw-r--r--docs/content/images.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/images.md b/docs/content/images.md
index f21010f0f..905ff337b 100644
--- a/docs/content/images.md
+++ b/docs/content/images.md
@@ -47,7 +47,7 @@ Add classes to an `<img>` element to easily style images in any project.
## Aligning images
-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 `.m-x-auto` margin utility class]({{ site.baseurl }}/components/utilities/#horizontal-centering).
+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">
@@ -60,11 +60,11 @@ Align images with the [helper float classes]({{ site.baseurl }}/components/utili
{% endhighlight %}
<div class="bd-example bd-example-images">
- <img data-src="holder.js/200x200" class="img-rounded m-x-auto d-block" alt="A generic square placeholder image with rounded corners">
+ <img data-src="holder.js/200x200" class="img-rounded mx-auto d-block" alt="A generic square placeholder image with rounded corners">
</div>
{% highlight html %}
-<img src="..." class="img-rounded m-x-auto d-block" alt="...">
+<img src="..." class="img-rounded mx-auto d-block" alt="...">
{% endhighlight %}
<div class="bd-example bd-example-images">