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/it/web/html/element/span/index.html | 110 ------------------------------ 1 file changed, 110 deletions(-) delete mode 100644 files/it/web/html/element/span/index.html (limited to 'files/it/web/html/element/span') diff --git a/files/it/web/html/element/span/index.html b/files/it/web/html/element/span/index.html deleted file mode 100644 index 6342586894..0000000000 --- a/files/it/web/html/element/span/index.html +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: -slug: Web/HTML/Element/span -translation_of: Web/HTML/Element/span ---- -
{{HTMLRef}}
- -

L'elemento HTML <span> è un contenitore inline generico per il contenuto di frasi, che non rappresenta intrinsecamente nulla. Può essere utilizzato per raggruppare gli elementi per scopi di stile (usando gli attributi class o id), o perché condividono valori di attributo, come lang. Dovrebbe essere usato solo quando nessun altro elemento semantico è appropriato. <span> è molto simile ad un elemento {{HTMLElement("div")}}, ma {{HTMLElement("div")}} è un elemento a livello di blocco mentre un elemento <span> è un elemento inline.

- -
{{EmbedInteractiveExample("pages/tabbed/span.html", "tabbed-shorter")}}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Categorie di contenutiContenuto di flusso, contenuto di frasi.
Contenuto consentitoContenuto di frasi.
Omissione del tag{{no_tag_omission}}
Genitori consentitiQualsiasi elemento che accetta contenuto di frasi, o qualsiasi elemento che accetta contenuto di flusso.
ARIA roles consentitiQualunque
Interfaccia DOM{{domxref("HTMLSpanElement")}} (prima di HTML 5, l'interfaccia era {{domxref("HTMLElement")}})
- -

Attributi

- -

Questo elemento include solo gli attributi globali.

- -

Esempio 1

- -
<p><span>Some text</span></p>
- -

Risultato

- -

Some text

- -

Esempio 2

- -

HTML

- -
<li><span>
-    <a href="portfolio.html" target="_blank">Guarda il mio portfolio</a>
-</span></li>
-
- -

CSS

- -
li span {
-  background: gold;
- }
-
- -

Specifiche

- - - - - - - - - - - - - - - - - - - - - - - - - - -
SpecificaStatoCommento
{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-span-element', '<span>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-span-element', '<span>')}}{{Spec2('HTML5 W3C')}}L'interfaccia DOM è ora {{domxref("HTMLSpanElement")}}.
{{SpecName('HTML4.01', 'struct/global.html#edef-SPAN', '<span>')}}{{Spec2('HTML4.01')}} 
- -

Compatibilità con i Browser

- - - -

{{Compat("html.elements.span")}}

- -

Vedi anche

- - -- cgit v1.2.3-54-g00ecf