Skip to content

Commit 038ba1f

Browse files
committed
[css-align] Make flex-end become end. Switch to computing the values rather than equivalency.
1 parent 0cf552d commit 038ba1f

2 files changed

Lines changed: 11 additions & 9 deletions

File tree

css-align/Overview.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ <h3 id=positional-values><span class=secno>3.1. </span> Positional
582582
be flush with the edge of the <a href="#alignment-container"><i>alignment
583583
container</i></a> corresponding to the <i>flex container</i>’s
584584
main-start or cross-start side, as appropriate. When used in layout modes
585-
other than Flexbox, this is equivalent to ‘<a href="#start"><code
585+
other than Flexbox, this value computes to ‘<a href="#start"><code
586586
class=css>start</code></a>’.
587587

588588
<dt><dfn id=flex-end><code class=css>flex-end</code></dfn>
@@ -592,8 +592,8 @@ <h3 id=positional-values><span class=secno>3.1. </span> Positional
592592
the edge of the <a href="#alignment-container"><i>alignment
593593
container</i></a> corresponding to the <i>flex container</i>’s main-end
594594
or cross-end side, as appropriate. When used in layout modes other than
595-
Flexbox, this is equivalent to ‘<a href="#start"><code
596-
class=css>start</code></a>’.
595+
Flexbox, this value computes to ‘<a href="#end"><code
596+
class=css>end</code></a>’.
597597

598598
<dt><dfn id=left><code class=css>left</code></dfn>
599599

@@ -602,7 +602,8 @@ <h3 id=positional-values><span class=secno>3.1. </span> Positional
602602
container</i></a>’s <a
603603
href="http://www.w3.org/TR/css3-writing-modes/#line-left">line-left</a>
604604
edge. If the property's axis is not parallel with the inline axis, this
605-
is equivalent to ‘<a href="#start"><code class=css>start</code></a>’.
605+
value computes to ‘<a href="#start"><code
606+
class=css>start</code></a>’.
606607

607608
<dt><dfn id=right><code class=css>right</code></dfn>
608609

@@ -611,7 +612,8 @@ <h3 id=positional-values><span class=secno>3.1. </span> Positional
611612
container</i></a>’s <a
612613
href="http://www.w3.org/TR/css3-writing-modes/#line-right">line-right</a>
613614
edge. If the property's axis is not parallel with the inline axis, this
614-
is equivalent to ‘<a href="#start"><code class=css>start</code></a>’.
615+
value computes to ‘<a href="#start"><code
616+
class=css>start</code></a>’.
615617
</dl>
616618

617619
<p class=issue>Add example images.

css-align/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,24 +283,24 @@ <h3 id='positional-values'>
283283
Aligns the <i>alignment subject</i> to be flush with the edge of the <i>alignment container</i>
284284
corresponding to the <i>flex container</i>’s main-start or cross-start side, as appropriate.
285285
When used in layout modes other than Flexbox,
286-
this is equivalent to ''start''.
286+
this value computes to ''start''.
287287

288288
<dt><dfn>''flex-end''</dfn>
289289
<dd><strong>Only used in flex layout.</strong>
290290
Aligns the <i>alignment subject</i> to be flush with the edge of the <i>alignment container</i>
291291
corresponding to the <i>flex container</i>’s main-end or cross-end side, as appropriate.
292292
When used in layout modes other than Flexbox,
293-
this is equivalent to ''start''.
293+
this value computes to ''end''.
294294

295295
<dt><dfn>''left''</dfn>
296296
<dd>Aligns the <i>alignment subject</i> to be flush with the <i>alignment container</i>’s <a href="http://www.w3.org/TR/css3-writing-modes/#line-left">line-left</a> edge.
297297
If the property's axis is not parallel with the inline axis,
298-
this is equivalent to ''start''.
298+
this value computes to ''start''.
299299

300300
<dt><dfn>''right''</dfn>
301301
<dd>Aligns the <i>alignment subject</i> to be flush with the <i>alignment container</i>’s <a href="http://www.w3.org/TR/css3-writing-modes/#line-right">line-right</a> edge.
302302
If the property's axis is not parallel with the inline axis,
303-
this is equivalent to ''start''.
303+
this value computes to ''start''.
304304
</dl>
305305

306306
<p class='issue'>Add example images.

0 commit comments

Comments
 (0)