From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/ca/web/html/element/dl/index.html | 214 -------------------------------- 1 file changed, 214 deletions(-) delete mode 100644 files/ca/web/html/element/dl/index.html (limited to 'files/ca/web/html/element/dl') diff --git a/files/ca/web/html/element/dl/index.html b/files/ca/web/html/element/dl/index.html deleted file mode 100644 index 1758b1b63e..0000000000 --- a/files/ca/web/html/element/dl/index.html +++ /dev/null @@ -1,214 +0,0 @@ ---- -title:
-slug: Web/HTML/Element/dl -translation_of: Web/HTML/Element/dl ---- -

L'element HTML <dl>  (o Element HTML llista de descripcions) tanca una llista de parells de termes i descripcions. Els usos més comuns per a aquest element són per implementa un glossari o per mostrar metadades (una llista de parells clau-valor).

- -

Abans d'HTML5, <dl> es coneixia com una llista de definicions.

- - - - - - - - - - - - - - - - - - - - - - - - -
Categories de contingutContingut dinàmic,i si els fills dels elements <dl>  inclouen un parell nom-valor, contingut palpable.
Contingut permèsZero o més elements {{HTMLElement("dt")}}, cadascun seguit d'un o més elements {{HTMLElement("dd")}}.
Omissió de l'etiqueta{{no_tag_omission}}
Elements pares permesosQualsevol element que accepti contingut dinàmic.
Interfície DOM{{domxref("HTMLDListElement")}}
- -

Atributs

- -

Aquest element inclou els atributs globals.

- -
-
{{htmlattrdef("compact")}} {{Non-standard_inline}}
-
Obliga a la descripció que aparegui en la mateixa línia que el terme. Aquest atribut no s'admet
-
- -

Exemples

- -

Terme únic i descripció

- -
<dl>
-  <dt>Firefox</dt>
-  <dd>A free, open source, cross-platform, graphical web browser
-      developed by the Mozilla Corporation and hundreds of volunteers.</dd>
-
-  <!-- other terms and definitions -->
-</dl>
-
- -

Sortida:

- -

Image:HTML-dl1.png

- -

Múltiples termes, descripció única

- -
<dl>
-  <dt>Firefox</dt>
-  <dt>Mozilla Firefox</dt>
-  <dt>Fx</dt>
-  <dd>A free, open source, cross-platform, graphical web browser
-      developed by the Mozilla Corporation and hundreds of volunteers.</dd>
-
-  <!-- other terms and definitions -->
-</dl>
-
- -

Sortida:

- -

Image:HTML-dl2.png

- -

Terme únic, múltiples descripcions

- -
<dl>
-  <dt>Firefox</dt>
-  <dd>A free, open source, cross-platform, graphical web browser
-      developed by the Mozilla Corporation and hundreds of volunteers.</dd>
-  <dd>The Red Panda also known as the Lesser Panda, Wah, Bear Cat or Firefox,
-      is a mostly herbivorous mammal, slightly larger than a domestic cat
-      (60 cm long).</dd>
-
-  <!-- other terms and definitions -->
-</dl>
-
- -

Sortida:

- -

Image:HTML-dl3.png

- -

Múltiples termes i descripcions

- -

També és possible definir diversos termes amb las definicions múltiples corresponents, mitjançant la combinació dels exemples anteriors.

- -

Metadata

- -

La descripció de les llistes són útils per mostrar les metadades com una llista de parells de clau-valor.

- -
<dl>
-    <dt>Name</dt>
-    <dd>Godzilla</dd>
-    <dt>Born</dt>
-    <dd>1952</dd>
-    <dt>Birthplace</dt>
-    <dd>Japan</dd>
-    <dt>Color</dt>
-    <dd>Green</dd>
-</dl>
-
- -

Consell: Pot ser útil per definir un separador clau-valor en CSS3, com ara:

- -
dt:after {
-  content: ": ";
-}
- -

Notes

- -

No utilitzeu aquest element (ni elements {{HTMLElement("ul")}}) per crear simplement sangrat en una pàgina. Encara que funciona, això és una mala pràctica i enfosqueix el significat de les llistes de definicions.

- -

Per canviar el sangrat de la descripció d'un terme, utilitzeu la propietat CSS {{cssxref("margin")}}.

- -

Especificacions

- - - - - - - - - - - - - - - - - - - - - - - - - - -
EspecificacióEstatComentari
{{SpecName('HTML WHATWG', 'grouping-content.html#the-dl-element', '<dl>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'grouping-content.html#the-dl-element', '<dl>')}}{{Spec2('HTML5 W3C')}} 
{{SpecName('HTML4.01', 'struct/lists.html#h-10.3', '<dl>')}}{{Spec2('HTML4.01')}}Definició inicial
- -

Navegadors compatibles

- -
{{CompatibilityTable}}
- -
- - - - - - - - - - - - - - - - - - - -
CaracterísticaChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Suport bàsic1.0{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -
- - - - - - - - - - - - - - - - - - - -
CaracterísticaAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Suport bàsic{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -

Veure

- - - -
{{HTMLRef}}
-- cgit v1.2.3-54-g00ecf