Home → References → CSS Properties →
CSS Property: unicode-bidi
Used in conjunction with direction, specifies how text is mapped to the Unicode algorithm, determining its directionality.
HTML Dog is hosted by Titan Internet
Possible Values
inheritnormal(default) - No additional embedding. Applies the implicit Unicode character order.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 thedirectionproperty.
Example
.hebrew {
direction: rtl;
unicode-bidi: bidi-override;
}

