Since December 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The ruby-align CSS property defines the distribution of the different ruby elements over the base.
/* 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: revert; ruby-align: revert-layer; ruby-align: unset;
startIs a keyword indicating that the ruby will be aligned with the start of the base text.
centerIs a keyword indicating that the ruby will be aligned at the middle of the base text.
space-betweenIs a keyword indicating that the extra space will be distributed between the elements of the ruby.
space-aroundIs a keyword indicating that the extra space will be distributed between the elements of the ruby, and around it.
| Initial value | space-around |
|---|---|
| Applies to | ruby bases, ruby annotations, ruby base containers, ruby annotation containers |
| Inherited | yes |
| Computed value | as specified |
| Animation type | by computed value type |
ruby-align =
start |
center |
space-between |
space-around
<ruby> <rb>This is a long text to check</rb> <rp>(</rp><rt>short ruby</rt><rp>)</rp> </ruby>
ruby {
ruby-align: start;
}
<ruby> <rb>This is a long text to check</rb> <rp>(</rp><rt>short ruby</rt><rp>)</rp> </ruby>
ruby {
ruby-align: center;
}
<ruby> <rb>This is a long text to check</rb> <rp>(</rp><rt>short ruby</rt><rp>)</rp> </ruby>
ruby {
ruby-align: space-between;
}
<ruby> <rb>This is a long text to check</rb> <rp>(</rp><rt>short ruby</rt><rp>)</rp> </ruby>
ruby {
ruby-align: space-around;
}
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
ruby-align |
128 | 128 | 38 | 114 | 18.2 | 128 | 38 | 85 | 18.2 | 28.0 | 128 | 18.2 |
center |
128 | 128 | 38 | 114 | 18.2 | 128 | 38 | 85 | 18.2 | 28.0 | 128 | 18.2 |
space-around |
128 | 128 | 38 | 114 | 18.2 | 128 | 38 | 85 | 18.2 | 28.0 | 128 | 18.2 |
space-between |
128 | 128 | 38 | 114 | 18.2 | 128 | 38 | 85 | 18.2 | 28.0 | 128 | 18.2 |
start |
128 | 128 | 38 | 114 | 18.2 | 128 | 38 | 85 | 18.2 | 28.0 | 128 | 18.2 |
<ruby>, <rt>, <rp>, and <rtc>.ruby-position, ruby-merge.
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/ruby-align