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/optgroup/index.html | 162 -------------------------- 1 file changed, 162 deletions(-) delete mode 100644 files/ca/web/html/element/optgroup/index.html (limited to 'files/ca/web/html/element/optgroup/index.html') diff --git a/files/ca/web/html/element/optgroup/index.html b/files/ca/web/html/element/optgroup/index.html deleted file mode 100644 index e7d0f7a4fe..0000000000 --- a/files/ca/web/html/element/optgroup/index.html +++ /dev/null @@ -1,162 +0,0 @@ ---- -title: -slug: Web/HTML/Element/optgroup -tags: - - Element - - Forms - - HTML - - HTML forms - - Reference - - Web -translation_of: Web/HTML/Element/optgroup ---- -

Sumari

- -

En un formulari web, l'element HTML <optgroup> crea una agrupació d'opcions dins d'un element {{HTMLElement ("select")}}.

- - - - - - - - - - - - - - - - - - - - - - - - -
Categories de contingutCap.
Contingut permèsZero o més elements {{HTMLElement("option")}} .
Omissió de l'etiquetaL'etiqueta d'inici és obligatòria. L'etiqueta de tancament és opcional si aquest element és seguit immediatament per un altre element <optgroup>, o si l'element pare no més contingut.
Elements pares permesosUn element {{HTMLElement("select")}}.
Interfície DOM{{domxref("HTMLOptGroupElement")}}
- -

{{Note("Optgroup elements may not be nested.")}}

- -

Atributs

- -

Aquest element inclou els atributs globals.

- -
-
{{htmlattrdef("disabled")}}
-
Si aquest atribut booleà està establert, cap dels elements en aquest grup d'opcions es pot seleccionar. Sovint, els navegadors no habiliten aquest control i no reben cap esdeveniment de navegació, com clics del ratolí o els relacionats amb l'enfocament.
-
{{htmlattrdef("label")}}
-
El nom del grup d'opcions, que el navegador pot utilitzar en etiquetar les opcions de la interfície d'usuari. Aquest atribut és obligatori si s'utilitza aquest element.
-
- -

Exemple

- -
<select>
-  <optgroup label="Group 1">
-    <option>Option 1.1</option>
-  </optgroup>
-  <optgroup label="Group 2">
-    <option>Option 2.1</option>
-    <option>Option 2.2</option>
-  </optgroup>
-  <optgroup label="Group 3" disabled>
-    <option>Option 3.1</option>
-    <option>Option 3.2</option>
-    <option>Option 3.3</option>
-  </optgroup>
-</select>
-
- -

Resultat

- -

{{EmbedLiveSample("Example")}}

- -

Especificacions

- - - - - - - - - - - - - - - - - - - - - - - - - - -
EspecificacióEstatComentari
{{SpecName('HTML WHATWG', 'the-button-element.html#the-optgroup-element', '<optgroup>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'forms.html#the-optgroup-element', '<optgroup>')}}{{Spec2('HTML5 W3C')}} 
{{SpecName('HTML4.01', 'interact/forms.html#h-17.6', '<optgroup>')}}{{Spec2('HTML4.01')}} 
- -

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