Skip to content

Commit 2b2836c

Browse files
committed
Generated. Do not edit!
1 parent adcdb40 commit 2b2836c

1 file changed

Lines changed: 32 additions & 3 deletions

File tree

css3-layout/new2.html

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@
5050
<h1>CSS Grid Template Layout Module</h1>
5151
<!--=================================================================-->
5252
<h2 class="no-num no-toc" id=longstatus-date-3-august-2004>Editor's Draft
53-
29 February 2012</h2>
53+
1 March 2012</h2>
5454

5555
<dl>
5656
<dt>This version:
5757

5858
<dd><a
59-
href="http://www.w3.org/TR/2012/ED-css3-layout-20120229/">http://www.w3.org/TR/2012/ED-css3-layout-20120229/</a>
59+
href="http://www.w3.org/TR/2012/ED-css3-layout-20120301/">http://www.w3.org/TR/2012/ED-css3-layout-20120301/</a>
6060

6161

6262
<dt>Latest version:
@@ -1058,6 +1058,9 @@ <h2 id=declaring-templates><span class=secno>2. </span>Declaring templates</h2>
10581058
class=property>grid-rows</code></a>&rsquo; or the number of rows in
10591059
&lsquo;<a href="#grid-template0"><code
10601060
class=property>grid-template</code></a>&rsquo;, whichever is larger.
1061+
1062+
<p class=note>Note that a grid element always has at least one row and one
1063+
column. Those may, however, have zero size.
10611064
<!--=================================================================-->
10621065

10631066
<h3 id=grid-template><span class=secno>2.1. </span> Declaring a template:
@@ -1586,14 +1589,40 @@ <h3 id=grid-shorthand><span class=secno>2.4. </span> The &lsquo;<a
15861589
href="#grid-rows"><code class=property>grid-rows</code></a>&rsquo;
15871590
property.
15881591
</div>
1592+
1593+
<div class=issue>
1594+
<p>Does it look better with the column sizes first instead of last? There
1595+
would be no need for a slash:
1596+
1597+
<blockquote>
1598+
<p>none | <a href="#ltcol-widthgt"><var>&lt;col-width&gt;</var></a>* [ <a
1599+
href="#ltstringgt"><var>&lt;string&gt;</var></a> <a
1600+
href="#ltrow-heightgt"><var>&lt;row-height&gt;</var></a>? ]+
1601+
</blockquote>
1602+
1603+
<p>E.g.:
1604+
1605+
<pre>
1606+
grid: 5em 1em * 1em 10em
1607+
"a . b . c" 2em
1608+
". . . . ." 1em
1609+
"d . e . f"
1610+
". . . . ." 1em
1611+
"g . h . i" 2em
1612+
</pre>
1613+
</div>
15891614
<!--=================================================================-->
15901615

15911616
<h3 id=default><span class=secno>2.5. </span>Default slots</h3>
15921617

15931618
<p>Every <a href="#grid-element.">grid element</a> has a <dfn
15941619
id=default-slot.>default slot.</dfn> If there is an asterisk (“*”) in
15951620
the template, then that slot is the default. If there is no asterisk, then
1596-
the first letter in the template defines the default slot.
1621+
the first letter in the template defines the default slot. If there is no
1622+
letter either, then&hellip;
1623+
1624+
<p class=issue>&hellip; define where a grid element's content goes if it
1625+
doesn't have any slots at all.
15971626

15981627
<div class=example>
15991628
<p>For example, if the template is defined by &lsquo;<code

0 commit comments

Comments
 (0)