HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

text-justify

Description

The text-justify property for CSS selects the justification method used when a line's alignment is set to justify.

Syntax

CSS

text-justify: value;

JS

object.style.textJustify = "value";

Values

<'text-justify'> = auto | none | inter-word | inter-character
auto

Automatically specified by the user agent.

none

Justification is disabled: there are no justification opportunities within the text.

inter-word

Justification adjusts spacing at word separators only.

inter-character

Justification adjusts spacing between each pair of adjacent typographic character units.

Initial

auto

Examples

1 · auto

2 · none

3 · inter-word

4 · inter-character

5 · JS