Esta tradução está incompleta. Ajude atraduzir este artigo.
Resumo
O HTML <div>
elemento (ou simplesmente HTML Documento de Divisão de Elemento) é um container genêrico para conteúdo de fluxo, que de certa forma não representa nada. Ele pode ser utilizado para agrupar elementos para fins de estilos (usando class ou id), ou porque eles compartilham valores de atributos, como lang. Ele deve ser utilizado somente quando não tiver outro elemento de semântica (tal como <article>
ou <nav>
) como é apropriado.
- Content categories Flow content, palpable content.
- Permitted content Flow content.
- Tag omission None, both the starting and ending tag are mandatory.
- Permitted parent elements Any element that accepts flow content.
- DOM interface
HTMLDivElement
Atributos
This element includes the global attributes.
In HTML5, the align attribute on <div>
is .
Exemplos
<div> <p>Any kind of content here. Such as <p>, <table>. You name it!</p> </div>
Result
Any kind of content here. Such as <p>, <table>. You name it!
Especificações
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of '<div>' in that specification. |
Living Standard | |
HTML5 The definition of '<div>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<div>' in that specification. |
Recommendation |
Compatibilidade dos navegadores
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 1.0 | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Veja também
- Semantic sectioning elements:
<section>
,<article>
,<nav>
,<header>
,<footer>
<span>
element for styling of phrasing content
Etiquetas do documento e colaboradores
Última atualização por:
lucrp,