diff options
Diffstat (limited to 'files/it/web/html/element/bdo/index.html')
-rw-r--r-- | files/it/web/html/element/bdo/index.html | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/files/it/web/html/element/bdo/index.html b/files/it/web/html/element/bdo/index.html new file mode 100644 index 0000000000..336d229c58 --- /dev/null +++ b/files/it/web/html/element/bdo/index.html @@ -0,0 +1,128 @@ +--- +title: <bdo> +slug: Web/HTML/Element/bdo +translation_of: Web/HTML/Element/bdo +--- +<h2 id="Sommario">Sommario</h2> + +<p>L'elemento HTML <code><bdo></code> (o <em>bidirectional override</em>) viene usato per sovrascrivere la direzione corrente del testo. Viene ignorata la direzione dei caratteri in favore di quella specificata dallo sviluppatore.</p> + +<ul class="htmlelt"> + <li><dfn><a href="/en-US/docs/HTML/Content_categories" title="HTML/Content_categories">Categoria</a></dfn> <a href="/en-US/docs/HTML/Content_categories#Flow_content" title="HTML/Content categories#Flow content">Contenuto di flusso</a>, <a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content categories#Phrasing content">contenuto testuale</a>, contenuto palpabile.</li> + <li><dfn>Contenuto permesso</dfn> <a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content_categories#Phrasing_content">Contenuto testuale</a>.</li> + <li><dfn>Omissione dei tag</dfn> {{no_tag_omission}}</li> + <li><dfn>Elementi genitore permessi</dfn>Qualsiasi elemento che accetta <a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content_categories#Phrasing_content">contenuto testuale</a>.</li> + <li><dfn>Interfaccia DOM</dfn> {{domxref("HTMLElement")}}. Fino a Gexko 1.9.2, Firefox implementava l'interfaccia {{domxref("HTMLSpanElement")}}.</li> +</ul> + +<h2 id="Attributi">Attributi</h2> + +<p>Questo elemento include gli <a href="/it/docs/HTML/Global_attributes">attributi globali</a>.</p> + +<ul> + <li><code>ltr</code>: da sinistra a destra;</li> + <li><code>rtl</code>: da destra a sinistra;</li> + <li><code>auto:</code> il browser decide la direzione del testo in base al contenuto dell'elemento.</li> +</ul> + +<dl> + <dt>{{htmlattrdef("dir")}}</dt> + <dd>La direzione del testo in questo elemento. Può assumere uno dei seguenti valori:</dd> +</dl> + +<h2 id="Esempio">Esempio</h2> + +<pre class="brush: html"><!-- Cambia la direzione del testo --> +<p>Questo testo va da sinistra verso destra.</p> +<p><bdo dir="rtl">Questo testo va da destra verso sinistra.</bdo></p></pre> + +<h3 id="Result">Result</h3> + +<p>Questo testo va da sinistra verso destra.</p> + +<p><bdo>Questo testo va da destra verso sinistra.</bdo></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">Commenti</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-bdo-element', '<bdo>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'the-bdo-element.html#the-bdo-element', '<bdo>')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML4.01', 'dirlang.html#h-8.2.4', '<bdo>')}}</td> + <td>{{Spec2('HTML4.01')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilità_con_i_browser">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>{{CompatVersionUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Note">Note</h2> + +<p>L'HTML 4 non specifica nessun evento per questo elemento; sono stati aggiunti nell'XHTML. Probabilmente questa è stata solo una svista.</p> + +<p>{{HTMLRef}}</p> |