2015-08-10 14:38:16 +08:00
---
2015-08-15 13:45:55 +08:00
layout: docs
2015-08-20 01:03:33 +08:00
title: Figures
2016-10-03 09:19:47 +08:00
description: Documentation and examples for displaying related images and text with the figure component in Bootstrap.
2015-08-10 14:38:16 +08:00
group: content
---
2016-10-03 09:19:47 +08:00
Anytime you need to display a piece of content—like an image with an optional caption, consider using a `<figure>` .
2015-08-10 14:38:16 +08:00
2015-11-03 03:56:24 +08:00
Use the included `.figure` , `.figure-img` and `.figure-caption` classes to provide some baseline styles for the HTML5 `<figure>` and `<figcaption>` elements. Images in figures have no explicit size, so be sure to add the `.img-fluid` class to your `<img>` to make it responsive.
2015-08-10 14:38:16 +08:00
{% example html %}
< figure class = "figure" >
2016-07-26 12:30:48 +08:00
< img data-src = "holder.js/400x300" class = "figure-img img-fluid rounded" alt = "A generic square placeholder image with rounded corners in a figure." >
2015-08-10 14:38:16 +08:00
< figcaption class = "figure-caption" > A caption for the above image.< / figcaption >
< / figure >
{% endexample %}
2016-10-04 00:55:59 +08:00
Aligning the figure's caption is easy with our [text utilities ]({{ site.baseurl }}/utilities/typography/#text-alignment ).
2015-08-10 14:38:16 +08:00
{% example html %}
< figure class = "figure" >
2016-07-26 12:30:48 +08:00
< img data-src = "holder.js/400x300" class = "figure-img img-fluid rounded" alt = "A generic square placeholder image with rounded corners in a figure." >
2016-11-27 12:33:46 +08:00
< figcaption class = "figure-caption text-right" > A caption for the above image.< / figcaption >
2015-08-10 14:38:16 +08:00
< / figure >
{% endexample %}