aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/html/element/center
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/web/html/element/center
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/it/web/html/element/center')
-rw-r--r--files/it/web/html/element/center/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/files/it/web/html/element/center/index.html b/files/it/web/html/element/center/index.html
new file mode 100644
index 0000000000..ca5a3d70c8
--- /dev/null
+++ b/files/it/web/html/element/center/index.html
@@ -0,0 +1,51 @@
+---
+title: <center>
+slug: Web/HTML/Element/center
+translation_of: Web/HTML/Element/center
+---
+<div>{{deprecated_header()}}</div>
+
+<h2 id="Sommario">Sommario</h2>
+
+<p>L'elemento HTML <strong><code>&lt;center&gt;</code></strong> è un elemento che può contenere paragrafi o altri elementi, che siano blocchi o inline. Il contenuto di questo elemento viene centrato orizzontalmente rispetto al suo contenitore (solitamente l'elemento {{HTMLElement("body")}}).</p>
+
+<p>Questo tag è deprecato a partire da HTML 4 (e XHTML 1) in favore della proprietà <a href="/en-US/docs/Web/CSS" title="/en-US/docs/Web/CSS">CSS</a> {{Cssxref("text-align")}}, che può essere applicata ad un elemento {{HTMLElement("div")}} o ai singoli elementi {{HTMLElement("p")}}. Per centrare i blocchi usa altre proprietà CSS come{{Cssxref("margin-left")}} e {{Cssxref("margin-right")}}, e impostale ad <code>auto</code> (o importa {{Cssxref("margin")}} a <code>0 auto</code></p>
+
+<h2 id="Interfaccia_DOM">Interfaccia DOM</h2>
+
+<p>Questo elemento implementa l'interfaccia {{domxref("HTMLElement")}}.</p>
+
+<div class="note">
+<p><strong>Nota:</strong> fino a Gecko 1.9.2 incluso, FIrefox implementa l'interfaccia {{domxref("HTMLSpanElement")}}.</p>
+</div>
+
+<h2 id="Example_1" name="Example_1">Esempio 1</h2>
+
+<pre class="brush: html notranslate">&lt;center&gt;Questo testo verrà centrato
+&lt;p&gt;E anche questo paragrafo.&lt;/p&gt;&lt;/center&gt;
+</pre>
+
+<h2 id="Example_2" name="Example_2">Esempio 2 (usando i CSS)</h2>
+
+<pre class="brush: html notranslate">&lt;div style="text-align:center"&gt;Questo testo verrà centrato.
+&lt;p&gt;E anche questo paragrafo.&lt;/p&gt;&lt;/div&gt;
+</pre>
+
+<h2 id="Example_3" name="Example_3">Esempio 3 (usando i CSS)</h2>
+
+<pre class="brush: html notranslate">&lt;p style="text-align:center"&gt;Questa linea verrà centrata.&lt;br&gt;
+E anche questa.&lt;/p&gt;
+</pre>
+
+<h2 id="Notes" name="Notes">Nota</h2>
+
+<p>Applicando {{Cssxref("text-align")}}<code>: center</code> a un elemento {{HTMLElement("div")}} o {{HTMLElement("p")}} si centra <em>il contenuto</em> di questi elementi, non gli elementi stessi.</p>
+
+<h2 id="Vedi_anche">Vedi anche</h2>
+
+<ul>
+ <li>{{Cssxref("text-align")}}</li>
+ <li>{{Cssxref("display")}}</li>
+</ul>
+
+<div>{{HTMLRef}}</div>