HTML CSS examples for HTML Tag:bdo
The required dir attribute sets the text direction of the text inside a <bdo> element.
Value | Description |
---|---|
ltr | Left-to-right text direction |
rtl | Right-to-left text direction |
The following code shows how to set the text direction:
<!DOCTYPE html> <html> <body> <p>This paragraph will go left-to-right.</p> <p><bdo dir="rtl">This paragraph will go right-to-left.</bdo></p> </body><!-- www . j a v a2 s . co m--> </html>