CSS Property: unicode-bidi
How text is mapped to the Unicode algorithm, determining its directionality.
Used in conjunction with the direction
property.
Possible Values
Value | Description |
---|---|
normal | No additional embedding. Applies the implicit Unicode character order. Default. |
embed | Opens an additional level of embedding within the algorithm whilst maintaining the implicit Unicode character order. |
bidi-override | Opens an additional level of embedding and overrides the Unicode character ordering, reordering the sequence to the value of the direction property. |
inherit | |
initial | |
unset |
Example
.hebrew {
direction: rtl;
unicode-bidi: bidi-override;
}