From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pt-br/web/html/element/article/index.html | 124 ++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 files/pt-br/web/html/element/article/index.html (limited to 'files/pt-br/web/html/element/article/index.html') diff --git a/files/pt-br/web/html/element/article/index.html b/files/pt-br/web/html/element/article/index.html new file mode 100644 index 0000000000..cff322b0cb --- /dev/null +++ b/files/pt-br/web/html/element/article/index.html @@ -0,0 +1,124 @@ +--- +title: article (artigo) +slug: Web/HTML/Element/article +translation_of: Web/HTML/Element/article +--- +

Resumo

+ +

O Elemento HTML Article (<article>) representa uma composição independente em um documento, página, aplicação, ou site, ou que é destinado a ser distribuido de forma independente ou reutilizável, por exemplo, em sindicação. Este poderia ser o post de um fórum, um artigo de revista ou jornal, um post de um blog, um comentário enviado por um usuário, um gadget ou widget interativos, ou qualquer outra forma de conteúdo independente.

+ +
+

Notas de uso:

+ + +
+ +

Contexto de uso

+ + + + + + + + + + + + + + + + + + + + +
Conteúdo permitidoFlow content
Omissão de tagNenhuma, tanto tag de início quanto de fim são obrigatórias
Elementos pai permitidos +

Qualquer elemento que aceita flow content. Note-se que um elemento <article> não pode ser descendente de um elemento {{ HTMLElement("address") }}.

+
Documento normativoHTML5, section 4.4.4
+ +

Atributos

+ +

Este elemento não possui outros elementos se não os global attributes, comuns a todos os elementos.

+ +

Interface DOM

+ +

Este elemento implementa a interface HTMLElement .

+ +

Exemplos

+ +
<article>
+  <h4>Um artigo realmente impressionante</h4>
+  <p>Lotes de texto incrível.</p>
+</article>
+
+ +

Resultado

+ +
<article> +

Um artigo realmente impressionante

+ +

Lotes de texto incrível.

+</article>
+ +

Compatibilidade

+ +

{{ CompatibilityTable() }}

+ +
+ + + + + + + + + + + + + + + + + + + +
CaracterísticaChromeFirefox (Gecko)Internet ExplorerOperaSafari
Suporte Básico5{{ CompatGeckoDesktop("2.0") }}9.011.104.1
+
+ +
+ + + + + + + + + + + + + + + + + + + +
CaracterísticaAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Suporte Básico2.2{{ CompatGeckoMobile("2.0") }}9.011.05.0 (iOS 4.2)
+
+ +

Veja também

+ + -- cgit v1.2.3-54-g00ecf