Skip to content

Commit b595211

Browse files
author
ratan@microsoft.com
committed
Adding 'minimum' value to 'wrap-flow' and making a correction to how
'minimum' or 'maximum' are resolved.
1 parent ce3ef6e commit b595211

2 files changed

Lines changed: 951 additions & 820 deletions

File tree

css3-exclusions/Exclusions.src.html

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ <h4 id="wrap-flow-property">The 'wrap-flow' property</h4>
231231
</tr>
232232
<tr>
233233
<th>Value:</th>
234-
<td><var>auto</var> | <var>both</var> | <var>start</var> | <var>end</var> | <var>maximum</var> | <var>clear</var></td>
234+
<td><var>auto</var> | <var>both</var> | <var>start</var> | <var>end</var> | <var>minimum</var> | <var>maximum</var> | <var>clear</var></td>
235235
</tr>
236236
<tr>
237237
<th>Initial:</th>
@@ -290,11 +290,17 @@ <h4 id="wrap-flow-property">The 'wrap-flow' property</h4>
290290
Inline flow content can flow after the end edge of the exclusion area but
291291
must leave the area before the start edge of the exclusion empty.
292292
</dd>
293+
<dt><dfn title="'wrap-flow'!!'minimum'">minimum</dfn></dt>
294+
<dd>
295+
Inline flow content can flow on the edge of the exclusion with the smallest
296+
available space within its containing block, and must leave the other edge
297+
of the exclusion empty.
298+
</dd>
293299
<dt><dfn title="'wrap-flow'!!'maximum'">maximum</dfn></dt>
294300
<dd>
295301
Inline flow content can flow on the edge of the exclusion with the largest
296-
available space for the given line, and must leave the other edge of the exclusion
297-
empty.
302+
available space within its containing block, and must leave the other edge
303+
of the exclusion empty.
298304
</dd>
299305
<dt><dfn title="'wrap-flow'!!'clear'">clear</dfn></dt>
300306
<dd>
@@ -309,10 +315,11 @@ <h4 id="wrap-flow-property">The 'wrap-flow' property</h4>
309315
<span>exclusion</span>.
310316
</p>
311317
<p>
312-
Otherwise, a computed 'wrap-flow' property value of 'both', 'start', 'end', 'maximum' or 'clear' on an
313-
element makes that element an <span>exclusion element</a>. It's <span>exclusion shape</span>
314-
is contributed to its containing block's <span>wrapping context</span>, causing the
315-
containing block's descendants to wrap around its exclusion area.
318+
Otherwise, a computed 'wrap-flow' property value of 'both', 'start', 'end', 'minimum',
319+
'maximum' or 'clear' on an element makes that element an <span>exclusion element</a>.
320+
It's <span>exclusion shape</span> is contributed to its containing block's
321+
<span>wrapping context</span>, causing the containing block's descendants to wrap around
322+
its exclusion area.
316323
</p>
317324

318325
<p>An <span>exclusion element</span> establishes a

0 commit comments

Comments
 (0)