Skip to content

Commit 53950c1

Browse files
committed
Add some more elements to the list of things that are always flexbox items.
1 parent 1647e85 commit 53950c1

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

css3-flexbox/Overview.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -581,12 +581,13 @@ <h2 id=flex-items><span class=secno>4. </span> Flexbox Items</h2>
581581
<code>&lt;svg></code>, <code>&lt;math></code>, <code>&lt;audio></code>,
582582
<code>&lt;video></code>, <code>&lt;iframe></code>,
583583
<code>&lt;object></code>, <code>&lt;embed></code>,
584-
<code>&lt;input></code>, <code>&lt;button></code>,
585-
<code>&lt;select></code>, or <code>&lt;textarea></code> element. <span
586-
class=note>Note: In other words, any element that is "intended to be" a
587-
replaced element, even if it becomes non-replaced (like an
588-
<code>&lt;img></code> that doesn't load and is replaced by its alt
589-
text.)</span>
584+
<code>&lt;applet></code>, <code>&lt;progress></code>,
585+
<code>&lt;meter></code>, <code>&lt;input></code>,
586+
<code>&lt;button></code>, <code>&lt;select></code>, or
587+
<code>&lt;textarea></code> element. <span class=note>Note: In other
588+
words, any element that is "intended to be" a replaced element, even if
589+
it becomes non-replaced (like an <code>&lt;object></code> that doesn't
590+
load and is replaced by its contents).</span>
590591

591592
<li> An anonymous block element wrapped around a contiguous run of
592593
non-replaced inline child elements. However, if the contents of the

css3-flexbox/Overview.src.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,14 @@ <h2 id='flex-items'>
289289
<code>&lt;iframe></code>,
290290
<code>&lt;object></code>,
291291
<code>&lt;embed></code>,
292+
<code>&lt;applet></code>,
293+
<code>&lt;progress></code>,
294+
<code>&lt;meter></code>,
292295
<code>&lt;input></code>,
293296
<code>&lt;button></code>,
294297
<code>&lt;select></code>,
295298
or <code>&lt;textarea></code> element.
296-
<span class='note'>Note: In other words, any element that is "intended to be" a replaced element, even if it becomes non-replaced (like an <code>&lt;img></code> that doesn't load and is replaced by its alt text.)</span>
299+
<span class='note'>Note: In other words, any element that is "intended to be" a replaced element, even if it becomes non-replaced (like an <code>&lt;object></code> that doesn't load and is replaced by its contents).</span>
297300

298301
<li>
299302
An anonymous block element wrapped around a contiguous run of non-replaced inline child elements.

0 commit comments

Comments
 (0)