@@ -384,15 +384,15 @@ <h3 id="named-flows-and-regions">Named flows and region chains</h3>
384384 The CSS regions module properties provide that mechanism.</ p >
385385
386386 < p > The following example illustrates
387- how the content of an < code > article</ code > element
387+ how the content of an < code > < article> </ code > element
388388 becomes a < span > named flow</ span >
389389 and how boxes marked with 'region1', 'region2', 'region3' and 'region4' IDs
390390 become CSS Regions that consume the 'article_flow' content.</ p >
391391
392392 < div class ="example ">
393393 < pre >
394394<style>
395- # article {
395+ article {
396396 < strong > flow-into: article_flow;</ strong >
397397 }
398398
@@ -1304,7 +1304,7 @@ <h3 id="the-region-overflow-property">The region-overflow property</h3>
13041304 < div class ="example ">
13051305 < pre >
13061306<style>
1307- # article {
1307+ article {
13081308 flow-into: "article";
13091309}
13101310
@@ -1316,7 +1316,7 @@ <h3 id="the-region-overflow-property">The region-overflow property</h3>
13161316
13171317</style>
13181318
1319- <div id=" article" >...</div >
1319+ <article>...</article >
13201320
13211321<div id="region_1"></div>
13221322<div id="region_2"></div>
@@ -1610,7 +1610,7 @@ <h2 id="multi-column-regions">Multi-column regions</h2>
16101610 }
16111611</style>
16121612
1613- <div id=" article" >...<div >
1613+ <article>...</article >
16141614<div id="multicol"></div>
16151615<div id="remainder"></div></ pre >
16161616 < p > is equivalent in rendering to, for example:</ p >
@@ -1632,7 +1632,7 @@ <h2 id="multi-column-regions">Multi-column regions</h2>
16321632 }
16331633</style>
16341634
1635- <div id=" article" >...<div >
1635+ <article>...</article >
16361636<div id="flex">
16371637 <div />
16381638 <div />
@@ -2243,7 +2243,7 @@ <h3 id="regions-visual-formatting-examples">Regions visual formatting example</h
22432243 < div class ="example ">
22442244 < pre >
22452245<style>
2246- # article {
2246+ article {
22472247 flow-into: article;
22482248}
22492249
@@ -2279,10 +2279,10 @@ <h3 id="regions-visual-formatting-examples">Regions visual formatting example</h
22792279
22802280</style>
22812281<body>
2282- <div id=" article" >
2282+ <article>
22832283 <p style="region-break-after:always;">I am not a ... </p>
22842284 <p>...</p>
2285- </div >
2285+ </article >
22862286 <div id="rA"></div>
22872287 <div id="rB"></div>
22882288 <div id="rC"></div>
@@ -2706,7 +2706,7 @@ <h2 id="intro-example-code" class="no-num">Appendix A. Example Code for Introduc
27062706 < span class ="highlight "> /*
27072707 * Creates the named flow
27082708 */</ span >
2709- # article {
2709+ article {
27102710 < strong > flow-into: article_flow;</ strong >
27112711 }
27122712
@@ -2725,15 +2725,15 @@ <h2 id="intro-example-code" class="no-num">Appendix A. Example Code for Introduc
27252725 through the region chain.
27262726--></ span >
27272727
2728- <div < em > id=" article" </ em > >
2728+ <article</ em > >
27292729 <h1>Introduction</h1>
27302730 <p>This is an example ...</p>
27312731
27322732 <h2>More Details</h2>
27332733 <p>This illustrates ...</p>
27342734 <p>Then, the example ...</p>
27352735 <p>Finally, this ...</p>
2736- </div >
2736+ </article >
27372737
27382738< span class ="highlight "> <!--
27392739 For this example, we layout the regions with a grid.
0 commit comments