|
9 | 9 | <link href="http://purl.org/dc/terms/" rel=schema.DC> |
10 | 10 | <meta content="CSS Grid Template Layout Module" name=DC.title> |
11 | 11 | <meta content=text name=DC.type> |
12 | | - <meta content=2012-08-31 name=DC.issued> |
| 12 | + <meta content=2012-09-03 name=DC.issued> |
13 | 13 | <meta content="Bert Bos" name=DC.creator> |
14 | 14 | <meta content="César Acebal" name=DC.creator> |
15 | 15 | <meta content=W3C name=DC.publisher> |
16 | | - <meta content="http://www.w3.org/TR/2012/ED-css3-layout-20120831/" |
| 16 | + <meta content="http://www.w3.org/TR/2012/ED-css3-layout-20120903/" |
17 | 17 | name=DC.identifier> |
18 | 18 | <link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright" |
19 | 19 | rel=DC.rights> |
|
64 | 64 | <h1>CSS Grid Template Layout Module</h1> |
65 | 65 | <!--=================================================================--> |
66 | 66 | <h2 class="no-num no-toc" id=longstatus-date-3-august-2004>Editor's Draft |
67 | | - 31 August 2012</h2> |
| 67 | + 3 September 2012</h2> |
68 | 68 |
|
69 | 69 | <dl> |
70 | 70 | <dt>This version: |
71 | 71 |
|
72 | 72 | <dd><a |
73 | | - href="http://www.w3.org/TR/2012/ED-css3-layout-20120831/">http://www.w3.org/TR/2012/ED-css3-layout-20120831/</a> |
| 73 | + href="http://www.w3.org/TR/2012/ED-css3-layout-20120903/">http://www.w3.org/TR/2012/ED-css3-layout-20120903/</a> |
74 | 74 |
|
75 | 75 | <dt>Latest version: |
76 | 76 |
|
@@ -2416,9 +2416,6 @@ <h3 id=flow><span class=secno>3.1. </span>Flowing content into slots: ‘<a |
2416 | 2416 | explicitly (by means of ‘<a href="#flow0"><code |
2417 | 2417 | class=property>flow</code></a>’) are each other's siblings in the slot. |
2418 | 2418 |
|
2419 | | - <p>The content flowed into a slot does not inherit properties from the |
2420 | | - slot. |
2421 | | - |
2422 | 2419 | <div class=example> |
2423 | 2420 | <p>For example, the style sheet |
2424 | 2421 |
|
@@ -2448,6 +2445,33 @@ <h3 id=flow><span class=secno>3.1. </span>Flowing content into slots: ‘<a |
2448 | 2445 | sibling of the first DIV, because both are added to slot b independently. |
2449 | 2446 | </div> |
2450 | 2447 |
|
| 2448 | + <div class=example> |
| 2449 | + <p>Here is another example. In this document |
| 2450 | + |
| 2451 | + <pre> |
| 2452 | +<P STYLE="grid: 'a b'"> |
| 2453 | + <SPAN STYLE="flow: a">First text <SPAN |
| 2454 | + STYLE="flow: a">Second text</SPAN> Third |
| 2455 | + text</SPAN> |
| 2456 | + <SPAN STYLE="flow: b">Fourth text <SPAN |
| 2457 | + STYLE="flow: auto">Fifth text</SPAN> Sixth |
| 2458 | + text</SPAN> |
| 2459 | +</P> |
| 2460 | +</pre> |
| 2461 | + |
| 2462 | + <p>the second SPAN has a non-auto ‘<a href="#flow0"><code |
| 2463 | + class=property>flow</code></a>’ and is thus taken out of its parent's |
| 2464 | + flow and added at the end of slot ‘<code class=css>a</code>’. As a |
| 2465 | + result, slot ‘<code class=css>a</code>’ contains text in this order: |
| 2466 | + “First text Third Text Second text.” This is in contrast to the |
| 2467 | + fourth SPAN, which has ‘<code class=css>flow: auto</code>’ and thus |
| 2468 | + remains inside its parent's flow. Slot ‘<code class=css>b</code>’ has |
| 2469 | + this text: “Fourth text Fifth text Sixth text.” |
| 2470 | + </div> |
| 2471 | + |
| 2472 | + <p>The content flowed into a slot does not inherit properties from the |
| 2473 | + slot. |
| 2474 | + |
2451 | 2475 | <p class=note>Note that ‘<a href="#flow0"><code |
2452 | 2476 | class=property>flow</code></a>’ applies to floating elements: they are |
2453 | 2477 | floated relative to their containing block, and if their ‘<a |
|
0 commit comments