Skip to content

Commit 340cf9f

Browse files
committed
[css-flexbox] Change min-width:auto to use the flex-basis when it's auto, not with width/height.
--HG-- extra : rebase_source : cc1b2514e290c80ca9bd5d18fed158db5ad8702b
1 parent d8f6aef commit 340cf9f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

css-flexbox/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ Implied Minimum Size of Flex Items</h3>
886886
this keyword specifies as the minimum size the smallest of:
887887

888888
<ul>
889-
<li>the computed 'width' ('height'), if that value is <a>definite</a>,
889+
<li>the used 'flex-basis', if the computed 'flex-basis' was ''flex-basis/auto'',
890890
<li>the computed 'max-width' ('max-height'), if that value is <a>definite</a>,
891891
<li>if the item has no intrinsic aspect ratio, its <a>min-content size</a>,
892892
<li>if the item has an intrinsic aspect ratio,

css-flexbox/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
</p>
247247
<h1 class="p-name no-ref" id=title>CSS Flexible Box Layout Module Level 1</h1>
248248
<h2 class="no-num no-toc no-ref heading settled heading" id=subtitle><span class=content>Editor’s Draft,
249-
<span class=dt-updated><span class=value-title title=20140627>27 June 2014</span></span></span></h2>
249+
<span class=dt-updated><span class=value-title title=20140701>1 July 2014</span></span></span></h2>
250250
<div data-fill-with=spec-metadata><dl>
251251
<dt>This version:
252252
<dd><a class=u-url href=http://dev.w3.org/csswg/css-flexbox/>http://dev.w3.org/csswg/css-flexbox/</a>
@@ -1021,7 +1021,7 @@ <h3 class="heading settled heading" data-level=4.5 id=min-size-auto><span class=
10211021
this keyword specifies as the minimum size the smallest of:
10221022

10231023
<ul>
1024-
<li>the computed <a class=property data-link-type=propdesc href=http://dev.w3.org/csswg/css2/visudet.html#propdef-width title=width>width</a> (<a class=property data-link-type=propdesc href=http://dev.w3.org/csswg/css2/visudet.html#propdef-height title=height>height</a>), if that value is <a data-link-type=dfn href=#definite title=definite>definite</a>,
1024+
<li>the used <a class=property data-link-type=propdesc href=#propdef-flex-basis title=flex-basis>flex-basis</a>, if the computed <a class=property data-link-type=propdesc href=#propdef-flex-basis title=flex-basis>flex-basis</a> was <a class=css data-link-for=flex-basis data-link-type=maybe href=#valuedef-auto1 title=auto>auto</a>,
10251025
<li>the computed <a class=property data-link-type=propdesc href=http://dev.w3.org/csswg/css2/visudet.html#propdef-max-width title=max-width>max-width</a> (<a class=property data-link-type=propdesc href=http://dev.w3.org/csswg/css2/visudet.html#propdef-max-height title=max-height>max-height</a>), if that value is <a data-link-type=dfn href=#definite title=definite>definite</a>,
10261026
<li>if the item has no intrinsic aspect ratio, its <a data-link-type=dfn href=http://dev.w3.org/csswg/css-sizing-3/#min-content-measure title="min-content size">min-content size</a>,
10271027
<li>if the item has an intrinsic aspect ratio,

0 commit comments

Comments
 (0)