From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/it/web/html/element/p/index.html | 109 +++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 files/it/web/html/element/p/index.html (limited to 'files/it/web/html/element/p') diff --git a/files/it/web/html/element/p/index.html b/files/it/web/html/element/p/index.html new file mode 100644 index 0000000000..43076c3029 --- /dev/null +++ b/files/it/web/html/element/p/index.html @@ -0,0 +1,109 @@ +--- +title: '

: The Paragraph element' +slug: Web/HTML/Element/p +tags: + - Contenuto di Raggruppamento HTML + - Elemento + - HTML + - Riferimento + - Web +translation_of: Web/HTML/Element/p +--- +

{{HTMLRef}}
+ +

L'elemento HTML <p> rappresenta un paragrafo di un testo. I paragrafi sono di solito rappresentati in modalità visiva come blocchi di testo che sono separati da blocchi adiacenti da linee di spazio verticali e/o dalla prima linea di indentazione. I paragrafi sono elementi block-level.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Categorie di contenutoContenuto di flusso, contenuto palpabile.
Contenuto permessoFrasi.
Tag omessiIl tag di partenza è richiesto. Il tag di fine può essere omesso se l'elemento {{HTMLElement("p")}} è immediatamente seguito da un {{HTMLElement("address")}}, {{HTMLElement("article")}}, {{HTMLElement("aside")}}, {{HTMLElement("blockquote")}}, {{HTMLElement("div")}}, {{HTMLElement("dl")}}, {{HTMLElement("fieldset")}}, {{HTMLElement("footer")}}, {{HTMLElement("form")}}, {{HTMLElement("h1")}}, {{HTMLElement("h2")}}, {{HTMLElement("h3")}}, {{HTMLElement("h4")}}, {{HTMLElement("h5")}}, {{HTMLElement("h6")}}, {{HTMLElement("header")}}, {{HTMLElement("hr")}}, {{HTMLElement("menu")}}, {{HTMLElement("nav")}}, {{HTMLElement("ol")}}, {{HTMLElement("pre")}}, {{HTMLElement("section")}}, {{HTMLElement("table")}}, {{HTMLElement("ul")}} o un altro elemento {{HTMLElement("p")}}, o se non ci sono più contenuti nell'elemento genitore ed esso non è un elemento {{HTMLElement("a")}}.
Genitori permessiQualsiasi elemento che accetta flow content.
Ruoli ARIA permessiQualsiasi.
Interfaccia DOM{{domxref("HTMLParagraphElement")}}
+ +

Attributi

+ +

Questo elemento include i global attributes.

+ +
+

Note: L'attributo align sui tag <p> è obsoleto e non dovrebbe essere più usato.

+
+ +

Esempi

+ +
<p>This is the first paragraph of text.
+  This is the first paragraph of text.
+  This is the first paragraph of text.
+  This is the first paragraph of text.</p>
+<p>This is the second paragraph.
+ This is the second paragraph.
+ This is the second paragraph.
+ This is the second paragraph.</p>
+
+ +

Il risultato di questo codice è:

+ +

{{EmbedLiveSample('Esempi')}}

+ +

Specificazioni

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificazioneStatoCommenti
{{SpecName('HTML WHATWG', 'semantics.html#the-p-element', '<p>')}}{{Spec2('HTML WHATWG')}}Nessun cambiamento dall'ultima istantanea W3C {{SpecName("HTML5 W3C")}}
{{SpecName('HTML5 W3C', 'grouping-content.html#the-p-element', '<p>')}}{{Spec2('HTML5 W3C')}}attributo align è obsoleto
{{SpecName('HTML4.01', 'struct/text.html#h-9.3.1', '<p>')}}{{Spec2('HTML4.01')}}Definizione iniziale
+ +

Compatibilità con i Browser

+ + + +

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

+ +

Vedi anche

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