|
44 | 44 | div.issue-marker a { |
45 | 45 | color: red; |
46 | 46 | } |
| 47 | + |
| 48 | + .issue.resolved, .issue.stale, .issue.moved { |
| 49 | + display: none; |
| 50 | + } |
47 | 51 | </style> |
48 | 52 |
|
49 | 53 | <body> |
|
53 | 57 |
|
54 | 58 | <h1 id=css-regions-module>CSS Regions Module</h1> |
55 | 59 |
|
56 | | - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 October |
| 60 | + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 29 October |
57 | 61 | 2011</h2> |
58 | 62 |
|
59 | 63 | <dl> |
60 | 64 | <dt>This version: |
61 | 65 |
|
62 | 66 | <dd><a |
63 | | - href="http://www.w3.org/TR/2011/ED-css3-regions-20111027/">http://www.w3.org/csswg/css3-regions</a> |
| 67 | + href="http://www.w3.org/TR/2011/ED-css3-regions-20111029/">http://www.w3.org/csswg/css3-regions</a> |
64 | 68 |
|
65 | 69 | <dt>Latest version: |
66 | 70 |
|
@@ -780,8 +784,36 @@ <h3 id=the-flow-from-property><span class=secno>4.2. </span>The ‘<a |
780 | 784 | then the element does not format any content visually. |
781 | 785 | </dl> |
782 | 786 |
|
783 | | - <p>Note that a region's document children are not visually formatted unless |
784 | | - they are directed to a named flow referenced by one or more regions. |
| 787 | + <p class=note>A region's document children are not visually formatted |
| 788 | + unless they are directed to a named flow referenced by one or more |
| 789 | + regions. |
| 790 | + |
| 791 | + <div class=note> |
| 792 | + <p>An element becomes a region when its ‘<a href="#flow-from"><code |
| 793 | + class=property>flow-from</code></a>’ property is set to a valid |
| 794 | + <ident> value, even if there is no content contributing to the |
| 795 | + referenced flow. For example:</p> |
| 796 | + <code></code> |
| 797 | + <pre> |
| 798 | +<style> |
| 799 | + .article{ |
| 800 | + flow-into: thread; |
| 801 | + } |
| 802 | + .region{ |
| 803 | + flow-from: thread; |
| 804 | + } |
| 805 | +</style> |
| 806 | +<html> |
| 807 | + <body> |
| 808 | + <div class=region>div content</div> |
| 809 | + </body> |
| 810 | +</html> |
| 811 | + </pre> |
| 812 | + There is no element matching the <code>.article</code> selector and |
| 813 | + therefore no content in the <code>thread</code> flow. However, the element |
| 814 | + matching the <code>.region</code> selector is still associated with that |
| 815 | + empty named flow and, consequently, its children are not formatted |
| 816 | + visually.</div> |
785 | 817 |
|
786 | 818 | <div class="issue resolved"> |
787 | 819 | <p><a |
|
0 commit comments