blob: c87148deb9a6cf332f2786251ab28a856af8add7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
---
title: <bdo>
slug: Web/HTML/Element/bdo
tags:
- HTML
- bdo
- ltr
- rtl
translation_of: Web/HTML/Element/bdo
---
<div>{{HTMLRef}}</div>
<p>O <strong><em>elemento </em>HTML <code><bdo></code> </strong>(<em>bidirectional override</em>) é usado para substituir a direcionalidade atual do texto. Isso faz com que a direcionalidade dos personagens seja ignorada em favor da direcionalidade especificada.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/en-US/docs/HTML/Content_categories">Content categories</a></th>
<td><a href="/en-US/docs/HTML/Content_categories#Flow_content">Flow content</a>, <a href="/en-US/docs/HTML/Content_categories#Phrasing_content">phrasing content</a>, palpable content.</td>
</tr>
<tr>
<th scope="row">Permitted content</th>
<td><a href="/en-US/docs/HTML/Content_categories#Phrasing_content">Phrasing content</a>.</td>
</tr>
<tr>
<th scope="row">Tag omission</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">Permitted parents</th>
<td>Any element that accepts <a href="/en-US/docs/HTML/Content_categories#Phrasing_content">phrasing content</a>.</td>
</tr>
<tr>
<th scope="row">Permitted ARIA roles</th>
<td>Any</td>
</tr>
<tr>
<th scope="row">DOM interface</th>
<td>{{domxref("HTMLElement")}} Up to Gecko 1.9.2 (Firefox 4) inclusive, Firefox implements the <code><a href="/en-US/docs/Web/API/HTMLSpanElement">HTMLSpanElement</a></code> interface for this element.</td>
</tr>
</tbody>
</table>
<h2 id="Atributos">Atributos</h2>
<p>Os atributos desse elemento incluem os <a href="/en-US/docs/HTML/Global_attributes">atributos globais</a>.</p>
<dl>
<dt>{{htmlattrdef("dir")}}</dt>
<dd>Direção de texto neste elemento. Os valores possíveis são:
<ul>
<li><code>ltr</code>: Indica que o texto ficará da <strong>Esquerda para a Direita</strong> (<strong>L</strong>eft-<strong>T</strong>o-<strong>R</strong>ight).</li>
<li><code>rtl</code>: Indica que o texto ficará da <strong>Direita</strong> <strong> para a Esquerda </strong>(<strong>R</strong>eft-<strong>T</strong>o-<strong>L</strong>ight).</li>
</ul>
</dd>
</dl>
<h2 id="Examplos">Examplos</h2>
<pre class="brush: html"><!-- Muda a direção do texto -->
<p>Este texto ficará da esquerda para a direita.</p>
<p><bdo dir="rtl">Este texto ficará da direita para a esquerda.</bdo></p>
</pre>
<h3 id="Resultado">Resultado</h3>
<p>{{EmbedLiveSample('Examplos')}}</p>
<h2 id="Notas">Notas</h2>
<p>A especificação HTML 4 não especificam eventos para este elemento; eles foram adicionados no XHTML. Este é provavelmente um descuido.</p>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'semantics.html#the-bdo-element', '<bdo>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'textlevel-semantics.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="Compatibilidade_de_Navegadores">Compatibilidade de Navegadores</h2>
<div class="hidden">A tabela de compatibilidade nesta página é gerada a partir de dados estruturados. Se você quiser contribuir com os dados, verifique <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e envie-nos um pedido de puxar.</div>
<p>{{Compat("html.elements.bdo")}}</p>
|