You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: css3-flexbox/Overview.src.html
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ <h3 id="values">
122
122
<h2id='box-model'>
123
123
The Flexbox Box Model</h2>
124
124
125
-
<p>An element with ''display:flexbox'' or ''display:inline-flexbox'' is a <dfn>flexbox</dfn>. Children of a flexbox are called <dfntitle="flexbox item|flexbox items|flexbox item's" id="flexbox-item">flexbox items</dfn> and are laid out using the flexbox box model.</p>
125
+
<p>An element with ''display:flexbox'' or ''display:inline-flexbox'' is a <dfn>flexbox</dfn>. Children of a flexbox are called <i>flexbox items</i> and are laid out using the flexbox box model.</p>
126
126
127
127
<p>Unlike block layout, which is normally biased towards laying things out vertically, and inline layout, which is normally biased toward laying things out horizontally, the flexbox layout algorithm is agnostic as to the direction the flexbox happens to be laid out in. To make it easier to talk about flexbox layout in a general way, we will define several direction-agnostic terms here to make the rest of the spec easier to read and understand.</p>
128
128
@@ -173,14 +173,14 @@ <h2 id='display-flexbox'>
173
173
<h2id='flex-items'>
174
174
Flexbox Items</h2>
175
175
176
-
<p>Flexbox layout algorithm operates on <i>flexbox items</i>, which are boxes that satisfy one of the following criteria:</p>
176
+
<p>The flexbox layout algorithm operates on boxes generated by <dfntitle="flexbox item|flexbox items|flexbox item's" id="flexbox-item">flexbox items</dfn>, which are elements that satisfy one of the following criteria:</p>
177
177
178
178
<ol>
179
-
<li>Immediate block-level children of flexbox</li>
179
+
<li>Immediate block-level children of the flexbox element</li>
180
180
181
-
<li>Atomic inline-level children of flexbox</li>
181
+
<li>Atomic inline-level children of the flexbox element</li>
182
182
183
-
<li>Contiguous run of non-replaced inline children, wrapped into an anonymous block box. If the contents of the anonymous box would be solely an anonymous inline containing only whitespace, the box is not generated, and the whitespace is removed from the box tree.</li>
183
+
<li>Contiguous run of non-replaced inline children, wrapped into an anonymous block element. If the contents of the anonymous block would be solely an anonymous inline containing only whitespace, the box is not generated, and the whitespace is removed from the box tree.</li>
184
184
</ol>
185
185
186
186
<p>Some values of 'display' trigger "fixup" to ensure a sensible tree structure. For example, a lone ''table-cell'' box is fixed up by generating ''table'' and ''table-row'' boxes around it. This fixup must occur <em>before</em> a flexbox's contents are checked to see if it's necessary to generate anonymous flexbox items.</p>
0 commit comments