aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/html/element/p/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/html/element/p/index.html')
-rw-r--r--files/it/web/html/element/p/index.html109
1 files changed, 0 insertions, 109 deletions
diff --git a/files/it/web/html/element/p/index.html b/files/it/web/html/element/p/index.html
deleted file mode 100644
index 43076c3029..0000000000
--- a/files/it/web/html/element/p/index.html
+++ /dev/null
@@ -1,109 +0,0 @@
----
-title: '<p>: The Paragraph element'
-slug: Web/HTML/Element/p
-tags:
- - Contenuto di Raggruppamento HTML
- - Elemento
- - HTML
- - Riferimento
- - Web
-translation_of: Web/HTML/Element/p
----
-<div>{{HTMLRef}}</div>
-
-<p><span class="seoSummary">L'<strong>elemento</strong> <strong>HTML <code>&lt;p&gt;</code> </strong>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</span>. I paragrafi sono elementi block-level.</p>
-
-<table class="properties">
- <tbody>
- <tr>
- <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories">Categorie di contenuto</a></th>
- <td><a href="https://developer.mozilla.org/it/docs/Web/Guide/HTML/Categorie_di_contenuto#Contenuto_di_flusso">Contenuto di flusso</a>, contenuto palpabile.</td>
- </tr>
- <tr>
- <th scope="row">Contenuto permesso</th>
- <td><a href="https://developer.mozilla.org/it/docs/Web/Guide/HTML/Categorie_di_contenuto#Contenuto_di_enunciazione">Frasi.</a></td>
- </tr>
- <tr>
- <th scope="row">Tag omessi</th>
- <td>Il 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")}}.</td>
- </tr>
- <tr>
- <th scope="row">Genitori permessi</th>
- <td>Qualsiasi elemento che accetta <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">flow content</a>.</td>
- </tr>
- <tr>
- <th scope="row">Ruoli ARIA permessi</th>
- <td>Qualsiasi.</td>
- </tr>
- <tr>
- <th scope="row">Interfaccia DOM</th>
- <td>{{domxref("HTMLParagraphElement")}}</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Attributi">Attributi</h2>
-
-<p>Questo elemento include i <a href="/en-US/docs/Web/HTML/Global_attributes">global attributes</a>.</p>
-
-<div class="note">
-<p><strong>Note:</strong> L'attributo <code>align</code> sui tag <code>&lt;p&gt;</code> è obsoleto e non dovrebbe essere più usato.</p>
-</div>
-
-<h2 id="Esempi">Esempi</h2>
-
-<pre class="brush: html">&lt;p&gt;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.&lt;/p&gt;
-&lt;p&gt;This is the second paragraph.
- This is the second paragraph.
- This is the second paragraph.
- This is the second paragraph.&lt;/p&gt;
-</pre>
-
-<p>Il risultato di questo codice è:</p>
-
-<p>{{EmbedLiveSample('Esempi')}}</p>
-
-<h2 id="Specificazioni">Specificazioni</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specificazione</th>
- <th scope="col">Stato</th>
- <th scope="col">Commenti</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', 'semantics.html#the-p-element', '&lt;p&gt;')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>Nessun cambiamento dall'ultima istantanea W3C {{SpecName("HTML5 W3C")}}</td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-p-element', '&lt;p&gt;')}}</td>
- <td>{{Spec2('HTML5 W3C')}}</td>
- <td>attributo <code>align</code> è obsoleto</td>
- </tr>
- <tr>
- <td>{{SpecName('HTML4.01', 'struct/text.html#h-9.3.1', '&lt;p&gt;')}}</td>
- <td>{{Spec2('HTML4.01')}}</td>
- <td>Definizione iniziale</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilità_con_i_Browser">Compatibilità con i Browser</h2>
-
-
-
-<p>{{Compat("html.elements.p")}}</p>
-
-<h2 id="Vedi_anche">Vedi anche</h2>
-
-<ul>
- <li>{{HTMLElement("hr")}}</li>
- <li>{{HTMLElement("br")}}</li>
-</ul>