Extensible HyperText Markup Language

XHTML.com recommends: PSD to HTML Slicing Service and PSD to HTML by W3 Markup. see your link here

unicode-bidi

Definition

The unicode-bidi property influences how bi-directional text is rendered. Bi-directional text comprises both left-to-right and right-to-left text in the same paragraph.

Example

  1. #message {
  2. direction: rtl;
  3. unicode-bidi: embed;
  4. }

Characteristics

Possible values

normal
The element does not open an additional level of embedding with respect to the bidirectional algorithm.
embed
If the element is inline-level, this value opens an additional level of embedding with respect to the bidirectional algorithm. The direction of this embedding level is given by the direction property.
bidi-override
For inline-level elements, this creates an override. For block-level, table-cell, table-caption, or inline-block elements this creates an override for inline-level descendants not within another block-level, table-cell, table-caption, or inline-block element.
inherit
Use the same computed value as the parent element for this property.

Default value

normal

Applies to

All elements

Inherited

No

See also