If you need to center an image only on mobile clients, you can apply the `.small-float-center` class. A good use case would be centering an image smaller than the full column width on devices like an iPhone 5, iPhone 6, and Android 4.4.
-
```inky_example
<container>
<row>
</container>
```
+## Aligning images left and right
+
+You can also align images to the left or the right.
+
+```inky_example
+<container>
+ <row>
+ <columns>
+ <img class="float-left" src="http://placehold.it/200?text=left" alt="">
+ <img class="float-center" src="http://placehold.it/200?text=center" alt="">
+ <img class="float-right" src="http://placehold.it/200?text=right" alt="">
+ </columns>
+ </row>
+</container>
+```
+
## Centering columns
Tables by nature take up as much space is available to them. Because of this, centering columns can be done by adding empty columns to left and right of the column to be centered.