--- title: ruby-align slug: Web/CSS/ruby-align translation_of: Web/CSS/ruby-align ---
The ruby-align CSS property defines the distribution of the different ruby elements over the base.
{{cssinfo}}
/* 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;
startcenterspace-betweenspace-aroundThis 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 {
ruby-align:start;
}
This gives the following result:
{{EmbedLiveSample("Ruby_aligned_at_the_start_of_the_base_text", 180, 40)}}
ruby {
ruby-align:center;
}
This gives the following result:
{{EmbedLiveSample("Ruby_aligned_at_the_center_of_the_base_text", 180, 40)}}
ruby {
ruby-align:space-between;
}
This gives the following result:
{{EmbedLiveSample("Extra_space_distributed_between_ruby_elements", 180, 40)}}
ruby {
ruby-align:space-around;
}
This gives the following result:
{{EmbedLiveSample("Extra_space_distributed_between_and_around_ruby_element", 180, 40)}}
| Specification | Status | Comment |
|---|---|---|
| {{ SpecName('CSS3 Ruby', '#ruby-align-property', 'ruby-align') }} | {{ Spec2('CSS3 Ruby') }} | Initial definition |
{{Compat}}