aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/html/element/acronym
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/html/element/acronym')
-rw-r--r--files/it/web/html/element/acronym/index.html118
1 files changed, 118 insertions, 0 deletions
diff --git a/files/it/web/html/element/acronym/index.html b/files/it/web/html/element/acronym/index.html
new file mode 100644
index 0000000000..57180f14e3
--- /dev/null
+++ b/files/it/web/html/element/acronym/index.html
@@ -0,0 +1,118 @@
+---
+title: <acronym>
+slug: Web/HTML/Element/acronym
+translation_of: Web/HTML/Element/acronym
+---
+<div>{{obsolete_header}}</div>
+
+<h2 id="Summary" name="Summary">Sommario</h2>
+
+<p>L'elemento HTML <code><strong>&lt;acronym&gt;</strong></code> permette all'autore di indicare che una sequenza di caratteri è un acronimo o un'abbreviazione.</p>
+
+<div class="note">
+<p><strong>Nota: </strong>Questo elemento è stato rimosso in HTML5. Gli sviluppatori dovrebbero usare l'elemento {{HTMLElement("abbr")}}.</p>
+</div>
+
+<h2 id="Attributes" name="Attributes">Attributi</h2>
+
+<p>Questo elemento supporta solo gli <a href="/it/docs/HTML/global_attributes">attributi globali</a>, comuni a tutti gli elementi.</p>
+
+<h2 id="DOM_Interface" name="DOM_Interface">Interfaccia DOM</h2>
+
+<p>Questo elemento implementa l'interfaccia {{domxref("HTMLElement")}}.</p>
+
+<div class="note"><strong>Nota: </strong>Fino a Geko 1.9.2, Firefox implementava l'interfaccia {{domxref("HTMLSpanElement")}}.</div>
+
+<h2 id="Example" name="Example">Esempio</h2>
+
+<pre class="brush:html">&lt;p&gt;Il &lt;acronym title="World Wide Web"&gt;WWW&lt;/acronym&gt; è solo uno dei componenti di Internet.&lt;/p&gt;
+</pre>
+
+<h2 id="Default_styling" name="Default_styling">Aspetto predefinito</h2>
+
+<p>Dato che questo tag serve solo per la comodità dell'autore, il suo aspetto di default cambia in ogni browser:</p>
+
+<ul>
+ <li>In alcuni browser, come Internet Explorer, questo elemento appare esattamente come uno {{HTMLElement("span")}}.</li>
+ <li>Opera, Firefox e alcuni altri browser aggiungono una linea di puntini sotto il contenuto dell'elemento.</li>
+ <li>Alcuni browser non solo aggiungono una lina di puntini, ma ne mostrano anche il contenuto in maiuscolo. Per evitare questo comportamento, si può usare la proprietà CSS {{cssxref("font-variant")}}<strong><code>: none</code></strong>.</li>
+</ul>
+
+<p>Qundi è particolarmente consigliato agli sviluppatori di non affidarsi allo stile predefinito.</p>
+
+<h2 id="Specifications" name="Specifications">Specifiche</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specifica</th>
+ <th scope="col">Stato</th>
+ <th scope="col">Commento</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML4.01', 'struct/text.html#edef-ACRONYM', '&lt;acronym&gt;')}}</td>
+ <td>{{Spec2('HTML4.01')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilità con i browser</h2>
+
+<p>{{CompatibilityTable}}</p>
+
+<div id="compat-desktop">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Funzionalità</th>
+ <th>Chrome</th>
+ <th>Firefox (Gecko)</th>
+ <th>Internet Explorer</th>
+ <th>Opera</th>
+ <th>Safari (WebKit)</th>
+ </tr>
+ <tr>
+ <td>Supporto di base</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatVersionUnknown}}</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<div id="compat-mobile">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Funzionalità</th>
+ <th>Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Phone</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>Supporto di base</td>
+ <td>{{CompatNo}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatNo}}</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<h2 id="See_also" name="See_also">Vedi anche</h2>
+
+<ul>
+ <li>L'elemento HTML {{HTMLElement("abbr")}}.</li>
+</ul>
+
+<div>{{HTMLRef}}</div>