HTML Dog
Skip to navigation

CSS Property: unicode-bidi

How text is mapped to the Unicode algorithm, determining its directionality.

Used in conjunction with the direction property.

Possible Values

ValueDescription
normalNo additional embedding. Applies the implicit Unicode character order. Default.
embedOpens an additional level of embedding within the algorithm whilst maintaining the implicit Unicode character order.
bidi-overrideOpens 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;
}

Browser support