Little Web Hut

HTML 4.01 and XHTML 1.0 Reference: <bdo> Tag

HTML <bdo> Tag - Bidirectional Override of Text Direction
Syntax This element uses separate opening and closing tags.
<bdo>...</bdo>
Usage The <bdo> tag is used set the text direction of the enclosed text. The text is placed between the opening and closing tags.

HTML & XHTML <bdo> example.
<p>
<bdo dir="rtl">Text written right to left.</bdo>
</p>
Test It HTML StyleTest It XHTML Style

Content Model The <bdo> element can contain the following tags, and Text, between its opening and closing tags.Notes:
1. The <bdo> element can contain the <iframe> tag when using DTD Transitional and Frameset documents but not Strict documents.
2. Red tags have been deprecated and are allowed in DTD Transitional and Frameset documents but not Strict documents.

<bdo> Tag Attribute Summary
Required Tag Specific Core Focus Events Language
dir   id class style title   onclick1 ondblclick1 onkeydown1 onkeypress1 onkeyup1 onmousedown1 onmousemove1 onmouseout1 onmouseover1 onmouseup1 lang xml:lang1
Notes: 1. XHTML only.

<bdo> Tag Attributes
Attribute Description
dirThe dir attribute specifies the direction of the text. For left-to-right use the value "ltr". For right-to-left use the value "rtl".

HTML & XHTML <dir> example.
<p>
<bdo dir="rtl">Text written right to left.</bdo>
</p>
Test It HTML StyleTest It XHTML Style


Note: This is a required attribute.
idThe id attribute assigns a unique name to a tag. This allows style sheets or scripts to reference the tag. See id Example
classThe class attribute assigns a class name to a tag. The class name does not need to be unique. More than one tag can have the same class name. This allows style sheets or scripts to reference multiple tags with a single class name. See class Example
styleThe style attribute specifies styles for the tag. For Cascading Style Sheets (CSS), the syntax is name:value. Each name:value pair is separated by semicolons. See style Example
titleThe title attribute specifies additional information about the tag. It is common for browsers to display the title when the pointing device stops over the object. See title Example
onclickThe onclick attribute specifies a script to be run when the object is clicked with a mouse or other pointing device. See onclick Example

Note: XHTML only.
ondblclickThe ondblclick attribute specifies a script to be run when the object is double clicked with a mouse or other pointing device. See ondblclick Example

Note: XHTML only.
onkeydownThe onkeydown attribute specifies a script to be run when a key is pressed down. See onkeydown Example

Note: XHTML only.
onkeypressThe onkeypress attribute specifies a script to be run when a key is pressed and released. See onkeypress Example

Note: XHTML only.
onkeyupThe onkeyup attribute specifies a script to be run when a key is released. See onkeyup Example

Note: XHTML only.
onmousedownThe onmousedown attribute specifies a script to be run when the mouse button, or other pointing device button, is pressed while over the object. See onmousedown Example

Note: XHTML only.
onmousemoveThe onmousemove attribute specifies a script to be run when the mouse, or other pointing device, is moved while it is over the object. See onmousemove Example

Note: XHTML only.
onmouseoutThe onmouseout attribute specifies a script to be run when the mouse, or other pointing device, is moved away from an object after being over it. See onmouseout Example

Note: XHTML only.
onmouseoverThe onmouseover attribute specifies a script to be run when the mouse, or other pointing device, is moved onto the object. See onmouseover Example

Note: XHTML only.
onmouseupThe onmouseup attribute specifies a script to be run when the mouse button, or other pointing device button, is released while over the object. See onmouseup Example

Note: XHTML only.
langThe lang attribute specifies a language. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See lang Example
xml:langThe xml:lang attribute specifies a language for XHTML documents. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See xml:lang Example

Note: XHTML only.

HTML <bdo> Tag Examples
Test It HTML StyleTest It HTML Style<bdo> example.