HomeReferencesCSS Properties

CSS Property: unicode-bidi

Used in conjunction with direction, specifies how text is mapped to the Unicode algorithm, determining its directionality.

HTML Dog, The Book HTML Dog book cover

HTML Dog is hosted by Titan Internet

Possible Values

  • inherit
  • normal (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 the direction property.

Example


.hebrew {
	direction: rtl;
	unicode-bidi: bidi-override;
}