Movatterモバイル変換


[0]ホーム

URL:


  1. Веб-технологии для разработчиков
  2. CSS: каскадные таблицы стилей
  3. Руководство по CSS
  4. Properties
  5. ruby-align

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

ruby-align

Baseline 2024
Newly available

Since ⁨December 2024⁩, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

Экспериментальная возможность:Это экспериментальная технология
Так как спецификация этой технологии ещё не стабилизировалась, смотритетаблицу совместимости по поводу использования в различных браузерах. Также заметьте, что синтаксис и поведение экспериментальной технологии может измениться в будущих версиях браузеров, вслед за изменениями спецификации.

Summary

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

Начальное значениеspace-around
Применяется кбазовые элементы ruby, аннотации к ruby, базовые ruby контейнеры, контейнеры аннотаций к ruby
Наследуетсяда
Обработка значениякак указано
Animation typeby computed value type

Syntax

css
/* 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

ruby-align =
start|
center|
space-between|
space-around

Examples

This HTML will render differently with each value ofruby-align:

html
<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

html
<ruby>  <rb>This is a long text to check</rb>  <rp>(</rp><rt>short ruby</rt><rp>)</rp></ruby>
css
ruby {  ruby-align: start;}

This gives the following result:

Ruby aligned at the center of the base text

html
<ruby>  <rb>This is a long text to check</rb>  <rp>(</rp><rt>short ruby</rt><rp>)</rp></ruby>
css
ruby {  ruby-align: center;}

This gives the following result:

Extra space distributed between ruby elements

html
<ruby>  <rb>This is a long text to check</rb>  <rp>(</rp><rt>short ruby</rt><rp>)</rp></ruby>
css
ruby {  ruby-align: space-between;}

This gives the following result:

Extra space distributed between and around ruby element

html
<ruby>  <rb>This is a long text to check</rb>  <rp>(</rp><rt>short ruby</rt><rp>)</rp></ruby>
css
ruby {  ruby-align: space-around;}

This gives the following result:

Спецификации

Specification
CSS Ruby Annotation Layout Module Level 1
# ruby-align-property

Совместимость с браузерами

Смотрите также

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp