- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 25 Oct 2011 20:23:47 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm In directory hutz:/tmp/cvs-serv548 Modified Files: Overview.html Log Message: x Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v retrieving revision 1.137 retrieving revision 1.138 diff -u -d -r1.137 -r1.138 --- Overview.html 25 Oct 2011 19:58:24 -0000 1.137 +++ Overview.html 25 Oct 2011 20:23:45 -0000 1.138 @@ -3300,7 +3300,8 @@ <h3 id=float-modifiers><span class=secno>15.1. </span>Float modifiers</h3> <p>These values on ‘<code class=property>float</code>’ can be - combined with ‘<code class=property>top</code>’/‘<code + combined with one of ‘<code + class=property>top</code>’/‘<code class=property>bottom</code>’/‘<code class=property>top-corner</code>’/‘<code class=property>bottom-corner</code>’ values: @@ -3311,33 +3312,43 @@ <dd>In paged media, float box to the next page. The first column of the multicol element on the next page is considered to be the natural column for boxes affected by this value. + <div class=example> + <pre> +.figure { float: top-corner next-page } +</pre> + </div> <dt>next-column <dd>In paged media, float box to the next column. + <div class=example> + <pre> +.figure { float: top next-column } +.figure { float: next-column top } +</pre> + </div> <dt>unless-room <dd>Only float the box if it otherwise would have lead to a column or page break. + <div class=example> + <pre> +.figure { float: top; width: 50% } +</pre> + <img src=7b.png></div> <dt>left - <dt>right - </dl> - - <div class=example> - <pre> -.figure { float: top next-column } -.figure { float: next-column top } -.figure { float: top unless-room } -.figure { float: top-corner next-page } + <dd> + <div class=example> + <pre> +.figure { float: top right; width: 60% } </pre> - </div> + <img src=13.png></div> - <p>Also, ‘<code class=property>snap</code>’ can be combined - with ‘<code class=property>left</code>’ and ‘<code - class=property>right</code>’. + <dt>right + </dl> <h2 id=multi-column-float-intrusion><span class=secno>16. </span>Multi-column float intrusion</h2>
Received on Tuesday, 25 October 2011 20:23:50 UTC