basics of website design banner photo

HTML

HTML 5

CSS 2.1

CSS 3

Reference

HTML <bdo> Element

The <bdo>element (bdo stands for bidirectional override) allows you to change the direction of text.
The <bdo> element requires the dir attribute to specify the direction using 'rtl'(right to left) or 'ltr'(left to right).
Example:

This text will run the normal way.
<bdo dir="rtl">But this will run from right to left<bdo/>

Result:
This text will run the normal way
But this will run from right to left.

<bdo> Attributes

NOTE: the dir attribute is REQUIRED - can have the values 'ltr'(left to right) or 'rtl'(right to left).

HTML 4 Element List