direction: ***; unicode-bidi: ***;
Browser |
|
---|
The direction property specifies the text direction, and the unicode-bidi property specifies the unicode direction.
p {
direction: rtl;
unicode-bidi: bidi-override;
}
The direction property
Specifies the text direction.
Property | Value | Explanation |
---|---|---|
direction | ltr | from left to right (default) |
rtl | from right to left |
The unicode-bidi property
Specifies the unicode direction.
Property | Value | Explanation |
---|---|---|
unicode-bidi | normal | normal direction (default) |
embed | embedding the direction property's value | |
bidi-override | the direction property's value overrides the unicode direction |