Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. HTML: Lenguaje de etiquetas de hipertexto
  3. Referencia HTML
  4. Referencia de Elementos HTML
  5. <figcaption>

Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.

View in EnglishAlways switch to English

<figcaption>

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨julio de 2015⁩.

El elementoHTML<figcaption> representa un subtítulo o leyenda asociado al contenido del elemento padre<figure>, pudiendo ser colocado como primer o último hijo. Es importante destacar que el elemento<figcaption> es opcional.

Pruébalo

<figure>  <img    src="/shared-assets/images/examples/elephant.jpg"    alt="Elephant at sunset" />  <figcaption>An elephant at sunset</figcaption></figure>
figure {  border: thin #c0c0c0 solid;  display: flex;  flex-flow: column;  padding: 5px;  max-width: 220px;  margin: auto;}img {  max-width: 220px;  max-height: 150px;}figcaption {  background-color: #222;  color: #fff;  font: italic smaller sans-serif;  padding: 3px;  text-align: center;}
Content categoriesNinguna
Contenido PermitidoFlow content.
Omisión de etiquetaNinguna, tanto la etiqueta inicial como la final son obligatorias.
Elementos padre permitidos En un elemento<figure> el elemento<figcaption> debe ser el primero o el último hijo.
Interfaz DOMHTMLElement
Contento en el que puede ser usado Como the first o last child de un<figure> element

Atributos

Este elemento sólo incluye losglobal attributes.

Ejemplos

Para ejemplos con<figcaption>, por favor ver la página<figure>.

Especificaciones

Specification
HTML
# the-figcaption-element

Compatibilidad con navegadores

Ver además

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp