Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

CSS unicode-bidi property


May 06, 2021 CSS Reference Manual


Table of contents


CSS unicode-bidi property

CSS unicode-bidi property CSS reference manual

Definitions and usages

The unicode-bidi property is used with the direction property to set or return whether text is rewritten to support multiple languages in the same document.

Default: normal
Inherited: Is
Animated: Whether. See Animation .
Version: CSS2
JavaScript syntax: object .style.unicodeBidi="bidi-override" Give it a try

CSS syntax

unicode-bidi: normal|embed|bidi-override|initial|inherit;

The property value

value describe test
normal default.Additional embedding is not used. test "
embed Create an additional embedded level. test "
bidi-override Create an additional embedded level.Reissue depends on the Direction property. test "
initial Set this property for its default value.See initial test "
inherit Inheriting this property from the parent element.See inherit

Browser support

The numbers in the table support the first browser version number of the property.

Attributes
unicode-bidi 2.0 5.5 1.0 1.3 9.2

Rewrite text:

div
{
direction:rtl;
unicode-bidi:bidi-override;
}

Try it out . . .

Related articles

CSS tutorial: CSS Text ( text).

HTML DOM Reference Manual: UnicodeBidi Properties


CSS unicode-bidi property CSS reference manual