From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/ruby-align/index.html | 152 +++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 files/ja/web/css/ruby-align/index.html (limited to 'files/ja/web/css/ruby-align') diff --git a/files/ja/web/css/ruby-align/index.html b/files/ja/web/css/ruby-align/index.html new file mode 100644 index 0000000000..d12b41aa1b --- /dev/null +++ b/files/ja/web/css/ruby-align/index.html @@ -0,0 +1,152 @@ +--- +title: ruby-align +slug: Web/CSS/ruby-align +tags: + - CSS + - CSS プロパティ + - CSS ルビ + - Reference +translation_of: Web/CSS/ruby-align +--- +
{{CSSRef}}{{SeeCompatTable}}
+ +

CSS の ruby-align プロパティは、ベースに対するさまざまなルビの配分を定義します。

+ +
/* キーワード値 */
+ruby-align: start;
+ruby-align: center;
+ruby-align: space-between;
+ruby-align: space-around;
+
+/* グローバル値 */
+ruby-align: inherit;
+ruby-align: initial;
+ruby-align: unset;
+
+ +

{{cssinfo}}

+ +

構文

+ +

+ +
+
start
+
ルビをベーステキストの始点に揃えることを示すキーワードです。
+
center
+
ルビをベーステキストの中央に揃えることを示すキーワードです。
+
space-between
+
ルビの要素の範囲内に配分するよう、スペースを付加することを示すキーワードです。
+
space-around
+
ルビの要素の範囲内に配分するよう、スペースを付加することを示すキーワードです。また、ルビの周囲にもスペースを付加します。
+
+ +

形式文法

+ +
{{csssyntax}}
+ +

+ +

この HTML を、ruby-align のそれぞれの値でレンダリングします。

+ +
<ruby>
+  <rb>確認用の長いテキスト</rb>
+  <rp>(</rp><rt>短いルビ</rt><rp>)</rp>
+</ruby>
+
+ +

ルビをベーステキストの始点に揃える

+ + + +
ruby {
+  ruby-align: start;
+}
+ +

結果は以下のとおりです。

+ +

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

+ +

ルビをベーステキストの中央に揃える

+ + + +
ruby {
+  ruby-align: center;
+}
+ +

結果は以下のとおりです。

+ +

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

+ +

ルビ要素の範囲内にスペースを配分する

+ + + +
ruby {
+  ruby-align: space-between;
+}
+ +

結果は以下のとおりです。

+ +

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

+ +

ルビ要素内および周囲にスペースを配分する

+ + + +
ruby {
+  ruby-align: space-around;
+}
+ +

結果は以下のとおりです。

+ +

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

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Ruby', '#ruby-align-property', 'ruby-align')}}{{Spec2('CSS3 Ruby')}}初回定義
+ +

ブラウザーの対応

+ + + +

{{Compat("css.properties.ruby-align")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf