blob: e40a044136e35fe5e5854e9a52983396afb25963 (
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
91
92
93
94
95
96
97
98
99
100
101
|
---
title: figcaption
slug: Web/HTML/Elemento/figcaption
translation_of: Web/HTML/Element/figcaption
---
<h2 id="Introdução">Introdução</h2>
<p>O <em>Elemento HTML Figcaption</em>(<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.</p>
<h3 id="Contexto_de_Uso">Contexto de Uso</h3>
<table class="standard-table">
<tbody>
<tr>
<td>Conteúdo permitido</td>
<td><a href="/en/HTML/Content_categories#flow_content" title="en/HTML/Content categories#flow content">Flow content</a></td>
</tr>
<tr>
<td>Omissão de Tag</td>
<td>
<p>Nenhum, tanto a tag de início e fim são obrigatórias</p>
</td>
</tr>
<tr>
<td>Elemento Pai Permitido</td>
<td>Um Elemento {{ HTMLElement("figure") }}</td>
</tr>
<tr>
<td>Documento Normativo</td>
<td><a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/grouping-content.html#the-figcaption-element" rel="external nofollow" title="http://www.whatwg.org/specs/web-apps/current-work/multipage/grouping-content.html#the-figcaption-element">HTML5, section 4.5.12</a></td>
</tr>
</tbody>
</table>
<h3 id="Atributos">Atributos</h3>
<p>Esse elemento não tem nenhum outro atributo além dos <a href="/en/HTML/Global_attributes" rel="internal">atributos globais</a>, comum a todos os elementos.</p>
<h3 class="editable" id="Interface_DOM">Interface DOM</h3>
<p>Esse elemento implementa a interface <code><a href="/en/DOM/element" title="en/DOM/element">HTMLElement</a></code>.</p>
<h3 id="Examples">Examples</h3>
<p>Favor consulte o página {{ HTMLElement("figure") }} para exemplos de <figcaption>.</p>
<h3 id="Compatibilidade">Compatibilidade</h3>
<p>{{ CompatibilityTable() }}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Basic support</td>
<td>8</td>
<td>{{ CompatGeckoDesktop("2.0") }}</td>
<td>9.0</td>
<td>11.10</td>
<td>5.1</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>3.0</td>
<td>{{ CompatGeckoMobile("2.0") }}</td>
<td>9.0</td>
<td>11.0</td>
<td>5.1 (iOS 5.0)</td>
</tr>
</tbody>
</table>
</div>
<h3 id="Ver_Também">Ver Também</h3>
<ul>
<li>O elemento {{ HTMLElement("figure") }}.</li>
</ul>
|