Cifras
Documentación y ejemplos para mostrar imágenes y texto relacionados con el componente de figura en Bootstrap.
Cada vez que necesite mostrar una parte del contenido, como una imagen con un título opcional, considere usar un archivo <figure>
.
Utilice las clases y incluidas para proporcionar algunos estilos básicos para .figure
HTML5 .figure-img
y elementos . Las imágenes en las figuras no tienen un tamaño explícito, así que asegúrese de agregar la clase a su para que responda..figure-caption
<figure>
<figcaption>
.img-fluid
<img>
<figure class="figure">
<img src="..." 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>
Alinear la leyenda de la figura es fácil con nuestras utilidades de texto .
<figure class="figure">
<img src="..." class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption text-right">A caption for the above image.</figcaption>
</figure>