--- title: ruby-align slug: Web/CSS/ruby-align translation_of: Web/CSS/ruby-align ---
{{CSSRef}}{{SeeCompatTable}}

Summary

The ruby-align CSS property defines the distribution of the different ruby elements over the base.

{{cssinfo}}

Syntax

/* Keyword values */
ruby-align: start;
ruby-align: center;
ruby-align: space-between;
ruby-align: space-around;

/* Global values */
ruby-align: inherit;
ruby-align: initial;
ruby-align: unset;

Values

start
Is a keyword indicating that the ruby will be aligned with the start of the base text.
center
Is a keyword indicating that the ruby will be aligned at the middle of the base text
space-between
Is a keyword indicating that the extra space will be distributed between the elements of the ruby.
space-around
Is a keyword indicating that the extra space will be distributed between the elements of the ruby, and around it.

Formal syntax

{{csssyntax}}

Examples

This HTML will render differently with each value of ruby-align:

<ruby>
  <rb>This is a long text to check</rb>
  <rp>(</rp><rt>short ruby</rt><rp>)</rp>
</ruby>

Ruby aligned at the start of the base text

ruby {
    ruby-align:start;
}

This gives the following result:

{{EmbedLiveSample("Ruby_aligned_at_the_start_of_the_base_text", 180, 40)}}

Ruby aligned at the center of the base text

ruby {
    ruby-align:center;
}

This gives the following result:

{{EmbedLiveSample("Ruby_aligned_at_the_center_of_the_base_text", 180, 40)}}

Extra space distributed between ruby elements

ruby {
    ruby-align:space-between;
}

This gives the following result:

{{EmbedLiveSample("Extra_space_distributed_between_ruby_elements", 180, 40)}}

Extra space distributed between and around ruby element

ruby {
    ruby-align:space-around;
}

This gives the following result:

{{EmbedLiveSample("Extra_space_distributed_between_and_around_ruby_element", 180, 40)}}

Specifications

Specification Status Comment
{{ SpecName('CSS3 Ruby', '#ruby-align-property', 'ruby-align') }} {{ Spec2('CSS3 Ruby') }} Initial definition

Browser compatibility

{{ CompatibilityTable() }}

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{ CompatNo }}  {{CompatGeckoDesktop(38)}} {{ CompatNo }} [1] {{ CompatNo }}  {{ CompatNo }}
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{ CompatNo }}  {{CompatGeckoMobile(38)}} {{ CompatNo }} [1] {{ CompatNo }}  CompatNo

[1] Internet Explorer, since IE9, implements an early draft of CSS Ruby where ruby-align had the following properties: auto, left, center, right, distribute-letter, distribute-space, and line-edge. Here is a rough conversion table:

IE syntax Standard syntax
auto Don't use ruby-align
left Use start (in ltr scripts)
center center
right Use start (in rtl scripts)
distribute-letter No direct equivalent, use space-between or space-around
distribute-space space-around
line-edge No direct equivalent.

See also