Skip to content

Commit 4358d72

Browse files
committed
[css-display-3] Adjust wording around block-level boxes. Fixes #1704.
1 parent c3a695c commit 4358d72

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

css-display-3/Overview.bs

+4-2
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,14 @@ Outer Display Roles for Flow Layout: the ''block'', ''inline'', and ''run-in'' k
316316
<dl dfn-type="value" dfn-for="display, <display-outside>">
317317
<dt><dfn>block</dfn>
318318
<dd>
319-
The element generates a <dfn dfn for>block-level box</dfn>
319+
The element generates a box that is
320+
<dfn dfn for lt="block-level box">block-level</dfn>
320321
when placed in <a>flow layout</a>. [[!CSS2]]
321322

322323
<dt><dfn>inline</dfn>
323324
<dd>
324-
The element generates an <dfn dfn for>inline-level box</dfn>
325+
The element generates a box that is
326+
<dfn dfn for lt="inline-level box">inline-level</dfn>
325327
when placed in <a>flow layout</a>. [[!CSS2]]
326328

327329
<dt><dfn>run-in</dfn>

css-flexbox-1/Overview.bs

+4-2
Original file line numberDiff line numberDiff line change
@@ -506,11 +506,13 @@ Flex Containers: the ''flex'' and ''inline-flex'' 'display' values</h2>
506506
<dl dfn-type=value dfn-for=display>
507507
<dt><dfn>flex</dfn>
508508
<dd>
509-
This value causes an element to generate a block-level <a>flex container</a> box.
509+
This value causes an element to generate a <a>flex container</a> box
510+
that is <a>block-level</a> when placed in <a>flow layout</a>.
510511

511512
<dt><dfn>inline-flex</dfn>
512513
<dd>
513-
This value causes an element to generate an inline-level <a>flex container</a> box.
514+
This value causes an element to generate a <a>flex container</a> box
515+
that is <a>inline-level</a> when placed in <a>flow layout</a>.
514516
</dl>
515517

516518
A <a>flex container</a> establishes a new <dfn export>flex formatting context</dfn> for its contents.

css-grid-1/Overview.bs

+4-2
Original file line numberDiff line numberDiff line change
@@ -838,11 +838,13 @@ Establishing Grid Containers: the ''display/grid'' and ''inline-grid'' 'display'
838838
<dl dfn-for="display" dfn-type=value>
839839
<dt><dfn>grid</dfn>
840840
<dd>
841-
This value causes an element to generate a block-level <a>grid container</a> box.
841+
This value causes an element to generate a <a>grid container</a> box
842+
that is <a>block-level</a> when placed in <a>flow layout</a>.
842843

843844
<dt><dfn>inline-grid</dfn>
844845
<dd>
845-
This value causes an element to generate an inline-level <a>grid container</a> box.
846+
This value causes an element to generate an <a>grid container</a> box
847+
that is <a>inline-level</a> when placed in <a>flow layout</a>.
846848
</dl>
847849

848850
A <dfn export>grid container</dfn> establishes a new <dfn export>grid formatting context</dfn> for its contents.

css-tables-3/Overview.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ spec:css-sizing-3; type:property; text:box-sizing
145145

146146
<dl id="display-types">
147147
<dt><dfn>table</dfn> (equivalent to HTML: &lt;table&gt;)
148-
<dd>Specifies that an element defines a block-level table:
149-
it is a rectangular block that participates in a block formatting context.
148+
<dd>Specifies that an element defines a table
149+
that is <a>block-level</a> when placed in <a>flow layout</a>.
150150

151151
<dt><dfn>inline-table</dfn> (equivalent to HTML: &lt;table&gt;)
152-
<dd>Specifies that an element defines an inline-level table:
153-
it is a rectangular block that participates in an inline formatting context).
152+
<dd>Specifies that an element defines a table
153+
that is <a>inline-level</a> when placed in <a>flow layout</a>.
154154

155155
<dt><dfn>table-row</dfn> (equivalent to HTML: &lt;tr&gt;)
156156
<dd>Specifies that an element is a row of cells.

0 commit comments

Comments
 (0)