diff options
Diffstat (limited to 'files/pt-pt/web/html/element/figcaption/index.html')
-rw-r--r-- | files/pt-pt/web/html/element/figcaption/index.html | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/files/pt-pt/web/html/element/figcaption/index.html b/files/pt-pt/web/html/element/figcaption/index.html new file mode 100644 index 0000000000..e40a044136 --- /dev/null +++ b/files/pt-pt/web/html/element/figcaption/index.html @@ -0,0 +1,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> |