blob: 705da31a5e91c113ffc052532acc8e4b45550af3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
---
title: '<figcaption>: O elemento de legenda da figura'
slug: Web/HTML/Element/figcaption
tags:
- Elemento
- HTML
translation_of: Web/HTML/Element/figcaption
---
<div>{{HTMLRef}}</div>
<div>O <strong>Elemento HTML Figcaption </strong>(<code><figcaption></code>) representa uma legenda ou uma legenda associada com uma figura ou ilustração descrita pelo resto dos dados do elemento {{ HTMLElement("figure") }} que seu elemento pai.</div>
<p> </p>
<div>{{EmbedInteractiveExample("pages/tabbed/figcaption.html","tabbed-shorter")}}</div>
<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.</div>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/en-US/docs/HTML/Content_categories">Categorias de conteúdo</a></th>
<td>Nenhuma.</td>
</tr>
<tr>
<th scope="row">Conteúdo permitido</th>
<td><a href="/en-US/docs/HTML/Content_categories#Flow_content">Flow content</a>.</td>
</tr>
<tr>
<th scope="row">Omissão de Tag</th>
<td>Nenhuma, tanto a tag de início quanto a de fim são obrigatórias.</td>
</tr>
<tr>
<th scope="row">Elemento Pai Permitido</th>
<td>Um Elemento {{HTMLElement("figure")}}</td>
</tr>
<tr>
<th scope="row">Interface DOM</th>
<td>{{domxref("HTMLElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Atributos">Atributos</h2>
<p>Esse elemento possui somente os <a href="/en-US/docs/HTML/Global_attributes">atributos globais</a>.</p>
<h2 id="Exemplos">Exemplos</h2>
<p>Por favor, consulte a página {{HTMLElement("figure")}} para visualizar o exemplos do elemento <code><figcaption></code>.</p>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'semantics.html#the-figcaption-element', '<figcaption>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-figcaption-element', '<figcaption>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>
<p>{{Compat("html.elements.figcaption")}}</p>
<h2 id="Veja_também">Veja também:</h2>
<ul>
<li>O elemento {{HTMLElement("figure")}}.</li>
</ul>
|