Skip to content

Commit 1095673

Browse files
ewilligerstabatkins
authored andcommitted
[css-display] Values without semicolons (#3056)
The production rules for display values previously ended with `;` The semicolon is not needed.
1 parent c2c38b1 commit 1095673

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

css-display-3/Overview.bs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,16 +203,16 @@ Box Layout Modes: the 'display' property</h2>
203203
Values are defined as follows:
204204

205205
<pre class='prod'>
206-
<dfn>&lt;display-outside></dfn> = block | inline | run-in ;
207-
<dfn>&lt;display-inside></dfn> = flow | flow-root | table | flex | grid | ruby ;
208-
<dfn>&lt;display-listitem></dfn> = <<display-outside>>? && [ flow | flow-root ]? && list-item ;
206+
<dfn>&lt;display-outside></dfn> = block | inline | run-in
207+
<dfn>&lt;display-inside></dfn> = flow | flow-root | table | flex | grid | ruby
208+
<dfn>&lt;display-listitem></dfn> = <<display-outside>>? && [ flow | flow-root ]? && list-item
209209
<dfn>&lt;display-internal></dfn> = table-row-group | table-header-group |
210210
table-footer-group | table-row | table-cell |
211211
table-column-group | table-column | table-caption |
212212
ruby-base | ruby-text | ruby-base-container |
213-
ruby-text-container ;
214-
<dfn>&lt;display-box></dfn> = contents | none ;
215-
<dfn>&lt;display-legacy></dfn> = inline-block | inline-table | inline-flex | inline-grid ;
213+
ruby-text-container
214+
<dfn>&lt;display-box></dfn> = contents | none
215+
<dfn>&lt;display-legacy></dfn> = inline-block | inline-table | inline-flex | inline-grid
216216
</pre>
217217

218218
The following informative table summarizes the values of 'display':

0 commit comments

Comments
 (0)