- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 09 Oct 2011 15:48:31 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm In directory hutz:/tmp/cvs-serv1483 Modified Files: Overview.html Log Message: x Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v retrieving revision 1.126 retrieving revision 1.127 diff -u -d -r1.126 -r1.127 --- Overview.html 9 Oct 2011 15:26:14 -0000 1.126 +++ Overview.html 9 Oct 2011 15:48:28 -0000 1.127 @@ -319,8 +319,8 @@ <li><a href="#paged-presentations"><span class=secno>14. </span>Paged presentations</a> - <li><a href="#navigation-between-paged"><span class=secno>15. - </span>Navigation between paged</a> + <li><a href="#navigation-between-pages"><span class=secno>15. + </span>Navigation between pages</a> <li><a href="#page-floats"><span class=secno>16. </span>Page floats</a> <ul class=toc> @@ -3069,12 +3069,12 @@ <dt>paged-x <dd>overflow content is paged, and the pages are laid out along the x - axis, in the writing direction + axis, in the x axis component of the writing direction <dt>paged-y <dd>overflow content is paged, and the pages are laid out along the y - axis, in the writing direction + axis, in the the y axis component of the writing direction <dt>paged-x-controls @@ -3088,6 +3088,12 @@ </dl> <div class=example> + <p>In this example, the root element is constrained to have the same + height as the initial containing block. Overflow content will be laid + out on subsequent pages along the x axis. In LTR languages, this means + right; in RTL languages this means left; in vertical-rl this means + right. + <pre> html { overflow: paged-x; @@ -3096,8 +3102,22 @@ </pre> </div> - <h2 id=navigation-between-paged><span class=secno>15. </span>Navigation - between paged</h2> + <div class=example> + <p>In this example, one element within the document is paged, and + controls are added so that users can navigate from one page to the next. + As such, the controls have the same effect as scrollbars in continous + presentations. + + <pre> + #content { + overflow: paged-x-controls; + height: 400px; + } +</pre> + </div> + + <h2 id=navigation-between-pages><span class=secno>15. </span>Navigation + between pages</h2> <p>Paged navigation within a page (as described above), can also be naturally extended to navigation between web documents. To support this, @@ -3127,7 +3147,7 @@ <div class=example> <pre> @navigation { - nav-up: url-doc(/); /* argument is URL relative to document */ + nav-up: url-doc(..); /* argument is URL relative to document */ nav-down: url(a1.html); /* argument is a url (as per CSS) */ nav-right: link-rel(next); /* argument is link type */ nav-left: go(back); /* go back in history */
Received on Sunday, 9 October 2011 15:48:35 UTC