diff options
Diffstat (limited to 'files/ca/web/html/element/dd/index.html')
-rw-r--r-- | files/ca/web/html/element/dd/index.html | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/files/ca/web/html/element/dd/index.html b/files/ca/web/html/element/dd/index.html new file mode 100644 index 0000000000..c4c99682d2 --- /dev/null +++ b/files/ca/web/html/element/dd/index.html @@ -0,0 +1,133 @@ +--- +title: <dd> +slug: Web/HTML/Element/dd +translation_of: Web/HTML/Element/dd +--- +<p>{{HTMLRef}}</p> + +<p>L'<strong>element HTML <dd></strong> (<em>Element de Descripció HTML</em>) indica la descripció d'un terme en una llista de descripció del element ({{HTMLElement("dl")}}) . Aquest element només pot aparèixer com un element fill d'una llista de descripció i ha de seguir a un element {{HTMLElement("dt")}}.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row"><a href="/en-US/docs/HTML/Content_categories" title="HTML/Content_categories">Categories de contingut</a></th> + <td>Cap</td> + </tr> + <tr> + <th scope="row">Contingut permès</th> + <td><a href="/en-US/docs/HTML/Content_categories#Flow_content" title="HTML/Content_categories#Flow_content">Contingut dinàmic</a>.</td> + </tr> + <tr> + <th scope="row">Omissió de l'etiqueta</th> + <td>Ha de tenir una etiqueta d'inici. L'etiqueta final es pot ometre si aquest element és seguit immediatament per un altre element <code><dd></code>, o si no hi ha més contingut en l'element pare.</td> + </tr> + <tr> + <th scope="row">Elements pares permesos</th> + <td>Després d'un element {{HTMLElement("dt")}} o {{HTMLElement("dd")}}, dins d'un {{HTMLElement("dl")}}.</td> + </tr> + <tr> + <th scope="row">Interfície DOM</th> + <td>{{domxref("HTMLElement")}}</td> + </tr> + </tbody> +</table> + +<h2 id="Atributs">Atributs</h2> + +<p>Aquest element inclou els<span style="line-height: 21px;"> </span><a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes" style="line-height: 21px;" title="HTML/Global attributes">atributs globals</a><span style="line-height: 21px;">.</span></p> + +<dl> + <dt>{{htmlattrdef("nowrap")}} {{Non-standard_inline}}</dt> + <dd><span id="result_box" lang="ca"><span>Si</span> <span>el valor d'aquest</span> <span>atribut</span> <span>s'estableix</span> <span>en <code>si</code>, el</span> <span>text</span> <span>de la definició</span> <span>no s'ajustarà</span></span>. <span id="result_box" lang="ca"> <span>El valor</span> <span>per</span> <span>defecte</span> <span>és </span></span><code>no</code>.</dd> +</dl> + +<h2 id="Exemple">Exemple</h2> + +<p><span class="short_text" id="result_box" lang="ca"><span>Per veure un</span> <span>exemple</span><span>, consulteu</span></span> <a href="/en-US/docs/HTML/Element/dl#examples" title="HTML/Element/dl#examples"><dl> exemples</a>.</p> + +<h2 id="Specifications" name="Specifications">Especificacions</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificació</th> + <th scope="col">Estat</th> + <th scope="col">Comentari</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="Navegadors_compatibles">Navegadors compatibles</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Característica</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Suport bàsic</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatGeckoDesktop("1.0")}} [1]</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Característica</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Suport bàsic</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatGeckoMobile("1.0")}} [1]</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] Fins a Gecko 1.9.2 (Firefox 4) <span id="result_box" lang="ca"><span>inclosos,</span> <span>Firefox</span> <span>implementa</span> <span>la interfície</span></span> <a href="/en-US/docs/DOM/span" title="DOM/span"><span style="font-family: courier new;">HTMLSpanElement</span></a> per a aquest element.</p> + +<h2 id="Veure">Veure</h2> + +<ul> + <li>{{HTMLELement("dl")}}, {{HTMLElement("dt")}}</li> +</ul> |