- From: Bert Bos via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 01 Mar 2012 22:59:53 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-layout In directory hutz:/tmp/cvs-serv22110 Modified Files: new2.html Log Message: Generated. Do not edit! Index: new2.html =================================================================== RCS file: /sources/public/csswg/css3-layout/new2.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- new2.html 1 Mar 2012 20:25:50 -0000 1.6 +++ new2.html 1 Mar 2012 22:59:51 -0000 1.7 @@ -50,13 +50,13 @@ <h1>CSS Grid Template Layout Module</h1> <!--=================================================================--> <h2 class="no-num no-toc" id=longstatus-date-3-august-2004>Editor's Draft - 29 February 2012</h2> + 1 March 2012</h2> <dl> <dt>This version: <dd><a - href="http://www.w3.org/TR/2012/ED-css3-layout-20120229/">http://www.w3.org/TR/2012/ED-css3-layout-20120229/</a> + href="http://www.w3.org/TR/2012/ED-css3-layout-20120301/">http://www.w3.org/TR/2012/ED-css3-layout-20120301/</a> <dt>Latest version: @@ -1058,6 +1058,9 @@ class=property>grid-rows</code></a>’ or the number of rows in ‘<a href="#grid-template0"><code class=property>grid-template</code></a>’, whichever is larger. + + <p class=note>Note that a grid element always has at least one row and one + column. Those may, however, have zero size. <!--=================================================================--> <h3 id=grid-template><span class=secno>2.1. </span> Declaring a template: @@ -1586,6 +1589,28 @@ href="#grid-rows"><code class=property>grid-rows</code></a>’ property. </div> + + <div class=issue> + <p>Does it look better with the column sizes first instead of last? There + would be no need for a slash: + + <blockquote> + <p>none | <a href="#ltcol-widthgt"><var><col-width></var></a>* [ <a + href="#ltstringgt"><var><string></var></a> <a + href="#ltrow-heightgt"><var><row-height></var></a>? ]+ + </blockquote> + + <p>E.g.: + + <pre> +grid: 5em 1em * 1em 10em + "a . b . c" 2em + ". . . . ." 1em + "d . e . f" + ". . . . ." 1em + "g . h . i" 2em +</pre> + </div> <!--=================================================================--> <h3 id=default><span class=secno>2.5. </span>Default slots</h3> @@ -1593,7 +1618,11 @@ <p>Every <a href="#grid-element.">grid element</a> has a <dfn id=default-slot.>default slot.</dfn> If there is an asterisk (“*”) in the template, then that slot is the default. If there is no asterisk, then - the first letter in the template defines the default slot. + the first letter in the template defines the default slot. If there is no + letter either, then… + + <p class=issue>… define where a grid element's content goes if it + doesn't have any slots at all. <div class=example> <p>For example, if the template is defined by ‘<code
Received on Thursday, 1 March 2012 22:59:55 UTC