1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
---
title: ruby-align
slug: Web/CSS/ruby-align
tags:
- CSS
- Propriedade
- Referencia
- Referencia CSS
translation_of: Web/CSS/ruby-align
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<h2 id="Summary">Summary</h2>
<p>A propriedade <code><strong>ruby-align</strong></code> do CSS define a distribuição dos direfentes elementos do ruby sobre a base.</p>
<p>{{cssinfo}}</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="brush:css">/* Valores chave */
ruby-align: start;
ruby-align: center;
ruby-align: space-between;
ruby-align: space-around;
/* Valores globais */
ruby-align: inherit;
ruby-align: initial;
ruby-align: unset;
</pre>
<h3 id="Values">Values</h3>
<dl>
<dt><code>start</code></dt>
<dd>É uma palavra-chave indicando que o ruby será alinhado com o início do texto base.</dd>
<dt><code>center</code></dt>
<dd>É uma palavra-chave indicando que o ruby será alinhado no meio do texto base.</dd>
<dt><code>space-between</code></dt>
<dd>É uma palavra-chave indicando que o espaço extra será distruibuído entre os elementos do ruby.</dd>
<dt><code>space-around</code></dt>
<dd>É uma palavra-chave indicando que o espaço extra será distruibuído entre os elementos do ruby e em torno deles.</dd>
</dl>
<h3 id="Sintaxe_formal">Sintaxe formal</h3>
{{csssyntax}}
<h2 id="Exemplos">Exemplos</h2>
<p>Esse HTML irá renderizar diferentemente com cada valor do <code>ruby-align</code>:</p>
<pre class="brush: html"><ruby>
<rb>Esse é um grande texto para verificar</rb>
<rp>(</rp><rt>ruby curto</rt><rp>)</rp>
</ruby>
</pre>
<h3 id="Ruby_alinhado_no_ínicio_do_texto_base">Ruby alinhado no ínicio do texto base</h3>
<pre class="brush: html" style="display: none;"><ruby>
<rb>This is a long text to check</rb>
<rp>(</rp><rt>short ruby</rt><rp>)</rp>
</ruby>
</pre>
<pre class="brush: css">ruby {
ruby-align:start;
}</pre>
<p>Isso dará o seguinte resultado:</p>
<p>{{EmbedLiveSample("Ruby_aligned_at_the_start_of_the_base_text", 180, 40)}}</p>
<h3 id="Ruby_alinhado_no_centro_do_texto_base">Ruby alinhado no centro do texto base</h3>
<pre class="brush: html" style="display: none;"><ruby>
<rb>This is a long text to check</rb>
<rp>(</rp><rt>short ruby</rt><rp>)</rp>
</ruby>
</pre>
<pre class="brush: css">ruby {
ruby-align:center;
}</pre>
<p>Isso dará o seguinte resultado:</p>
<p>{{EmbedLiveSample("Ruby_aligned_at_the_center_of_the_base_text", 180, 40)}}</p>
<h3 id="Espaço_extra_distribuído_entre_os_elementos_do_ruby">Espaço extra distribuído entre os elementos do ruby</h3>
<pre class="brush: html" style="display: none;"><ruby>
<rb>This is a long text to check</rb>
<rp>(</rp><rt>short ruby</rt><rp>)</rp>
</ruby>
</pre>
<pre class="brush: css">ruby {
ruby-align:space-between;
}</pre>
<p>Isso dará o seguinte resultado:</p>
<p>{{EmbedLiveSample("Extra_space_distributed_between_ruby_elements", 180, 40)}}</p>
<h3 id="Espaço_extra_distribuído_entre_os_elementos_do_ruby_e_em_torno_deles">Espaço extra distribuído entre os elementos do ruby e em torno deles</h3>
<pre class="brush: html" style="display: none;"><ruby>
<rb>This is a long text to check</rb>
<rp>(</rp><rt>short ruby</rt><rp>)</rp>
</ruby>
</pre>
<pre class="brush: css">ruby {
ruby-align:space-around;
}</pre>
<p>Isso dará o seguinte resultado:</p>
<p>{{EmbedLiveSample("Extra_space_distributed_between_and_around_ruby_elements", 180, 40)}}</p>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Ruby', '#ruby-align-property', 'ruby-align')}}</td>
<td>{{Spec2('CSS3 Ruby')}}</td>
<td>Definição inicital</td>
</tr>
</tbody>
</table>
<h2 id="Compatilibade_de_Navegador">Compatilibade de Navegador</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Aspecto</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Suporte básico</td>
<td>{{CompatNo}}</td>
<td>{{CompatGeckoDesktop(38)}}</td>
<td>{{CompatNo}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Suporte básico</td>
<td>{{CompatNo}}</td>
<td>{{CompatGeckoMobile(38)}}</td>
<td>{{CompatNo}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<p>[1] Desde a versão 9 o Internet Explorer implementa um rascunho inicial do Ruby do CSS onde o <code>ruby-align</code> tinha os seguintes valores: <code>auto</code>, <code>left</code>, <code>center</code>, <code>right</code>, <code>distribute-letter</code>, <code>distribute-space</code>, and <code>line-edge</code>. Aqui está uma simples tabela de conversão:</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Sintaxe do IE</th>
<th scope="col">Sintaxe padrão</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>auto</code></td>
<td>Não usa <code>ruby-align</code></td>
</tr>
<tr>
<td><code>left</code></td>
<td>Usa <code>start</code> (em scripts ltr)</td>
</tr>
<tr>
<td><code>center</code></td>
<td><code>center</code></td>
</tr>
<tr>
<td><code>right</code></td>
<td>Usa <code>start</code> (em scripts rtl)</td>
</tr>
<tr>
<td><code>distribute-letter</code></td>
<td>Nenhum equivalente direto, usa <code>space-between</code> ou <code>space-around</code></td>
</tr>
<tr>
<td><code>distribute-space</code></td>
<td><code>space-around</code></td>
</tr>
<tr>
<td><code>line-edge</code></td>
<td>Nenhum equivalente direto.</td>
</tr>
</tbody>
</table>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>Elementos Ruby do HTML: {{HTMLElement("ruby")}}, {{HTMLElement("rt")}}, {{HTMLElement("rp")}}, and {{HTMLElement("rtc")}}.</li>
<li>Propriedades Ruby do CSS: {{cssxref("ruby-position")}}, {{cssxref("ruby-merge")}}.</li>
</ul>
|