Skip to content

Commit c725f1b

Browse files
committed
Generated. Do not edit!
1 parent b41cc45 commit c725f1b

1 file changed

Lines changed: 31 additions & 7 deletions

File tree

css3-layout/Overview.html

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<link href="http://purl.org/dc/terms/" rel=schema.DC>
1010
<meta content="CSS Grid Template Layout Module" name=DC.title>
1111
<meta content=text name=DC.type>
12-
<meta content=2012-08-31 name=DC.issued>
12+
<meta content=2012-09-03 name=DC.issued>
1313
<meta content="Bert Bos" name=DC.creator>
1414
<meta content="César Acebal" name=DC.creator>
1515
<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/"
1717
name=DC.identifier>
1818
<link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
1919
rel=DC.rights>
@@ -64,13 +64,13 @@
6464
<h1>CSS Grid Template Layout Module</h1>
6565
<!--=================================================================-->
6666
<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>
6868

6969
<dl>
7070
<dt>This version:
7171

7272
<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>
7474

7575
<dt>Latest version:
7676

@@ -2416,9 +2416,6 @@ <h3 id=flow><span class=secno>3.1. </span>Flowing content into slots: ‘<a
24162416
explicitly (by means of ‘<a href="#flow0"><code
24172417
class=property>flow</code></a>’) are each other's siblings in the slot.
24182418

2419-
<p>The content flowed into a slot does not inherit properties from the
2420-
slot.
2421-
24222419
<div class=example>
24232420
<p>For example, the style sheet
24242421

@@ -2448,6 +2445,33 @@ <h3 id=flow><span class=secno>3.1. </span>Flowing content into slots: ‘<a
24482445
sibling of the first DIV, because both are added to slot b independently.
24492446
</div>
24502447

2448+
<div class=example>
2449+
<p>Here is another example. In this document
2450+
2451+
<pre>
2452+
&lt;P STYLE="grid: 'a b'">
2453+
&lt;SPAN STYLE="flow: a">First text &lt;SPAN
2454+
STYLE="flow: a">Second text&lt;/SPAN> Third
2455+
text&lt;/SPAN>
2456+
&lt;SPAN STYLE="flow: b">Fourth text &lt;SPAN
2457+
STYLE="flow: auto">Fifth text&lt;/SPAN> Sixth
2458+
text&lt;/SPAN>
2459+
&lt;/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+
24512475
<p class=note>Note that ‘<a href="#flow0"><code
24522476
class=property>flow</code></a>’ applies to floating elements: they are
24532477
floated relative to their containing block, and if their ‘<a

0 commit comments

Comments
 (0)