csswg/css3-gcpm Overview.html,1.137,1.138

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 &lsquo;<code class=property>float</code>&rsquo; can be
-    combined with &lsquo;<code class=property>top</code>&rsquo;/&lsquo;<code
+    combined with one of &lsquo;<code
+    class=property>top</code>&rsquo;/&lsquo;<code
     class=property>bottom</code>&rsquo;/&lsquo;<code
     class=property>top-corner</code>&rsquo;/&lsquo;<code
     class=property>bottom-corner</code>&rsquo; 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, &lsquo;<code class=property>snap</code>&rsquo; can be combined
-    with &lsquo;<code class=property>left</code>&rsquo; and &lsquo;<code
-    class=property>right</code>&rsquo;.
+    <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