blob: c2d712ec2adb035b733d66bfaec75fcf0a51dfa5 (
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
102
103
104
105
106
107
108
109
110
111
112
|
---
title: '<dd>: elemento Detalhes da Descrição'
slug: Web/HTML/Element/dd
tags:
- Definição
- Detalhes da Descrição
- Elemento
- Elemento HTML
- HTML
- Internet
- Referencia
- Web
- dd
- detalhes
- lista de descrições
- lista descritiva
translation_of: Web/HTML/Element/dd
---
<div>O <strong>elemento HTML <dd></strong> fornece detalhes ou uma definição mais completa do termo precedente (definido por {{HTMLElement("dt")}}) numa lista de descrições ({{HTMLElement("dl")}}).</div>
<div> </div>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/pt-BR/docs/Web/Guide/HTML/Categorias_de_conteudo">Categorias de conteúdo</a></th>
<td>Nenhuma.</td>
</tr>
<tr>
<th scope="row">Conteúdo permitido</th>
<td><a href="/pt-BR/docs/Web/Guide/HTML/Categorias_de_conteudo#Conte%C3%BAdo_de_fluxo">Conteúdo de fluxo</a>.</td>
</tr>
<tr>
<th scope="row">Omissão de Tag</th>
<td>
<p>A Tag inicial ({{HTMLElement("dd")}}) é obrigatória.<br>
A Tag final (</dd>) pode ser omitida se seguida imediatamente por outro elemento {{HTMLElement("dd")}}, ou se o elemento pai não tiver mais conteúdo.</p>
</td>
</tr>
<tr>
<th scope="row">Ancestrais permitidos</th>
<td>{{HTMLElement("dl")}} ou (em <a href="/en-US/docs/Glossary/WHATWG">WHATWG</a> HTML) uma {{HTMLElement("div")}} que está dentro de uma {{HTMLElement("dl")}}.</td>
</tr>
<tr>
<th scope="row">Tags irmãs</th>
<td>{{HTMLElement("dt")}} ou outro elemento {{HTMLElement("dd")}} .</td>
</tr>
<tr>
<th scope="row">Papeis ARIA permitidos</th>
<td>Nenhum.</td>
</tr>
<tr>
<th scope="row">Tipo de elemento DOM</th>
<td>{{domxref("HTMLElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Atributos">Atributos</h2>
<p>Este elemento inclui os <a href="/pt-BR/docs/Web/HTML/Global_attributes">atributos globais</a> como seus.</p>
<dl>
<dt>{{htmlattrdef("nowrap")}} {{Non-standard_inline}}</dt>
<dd>Se o valor deste atributo for <code>yes</code>, o texto de definição não será envolvido. O valor padrão é <code>no</code>.</dd>
</dl>
<h2 id="Exemplo">Exemplo</h2>
<p>Para exemplos, veja <a href="/pt-BR/docs/Web/HTML/Element/dl#Exemplos">os exemplos de <dl></a>.</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-dd-element', '<dd>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-dd-element', '<dd>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/lists.html#h-10.3', '<dd>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade_com_Navegadores">Compatibilidade com Navegadores</h2>
<p>{{Compat("html.elements.dd")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{HTMLELement("dl")}}</li>
<li>{{HTMLElement("dt")}}</li>
</ul>
|