- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Oct 2011 21:35:27 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv8801
Modified Files:
Overview.src.html
Log Message:
adding second argument to leader()
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.src.html,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -d -r1.162 -r1.163
--- Overview.src.html 31 Oct 2011 20:58:47 -0000 1.162
+++ Overview.src.html 31 Oct 2011 21:35:25 -0000 1.163
@@ -496,19 +496,39 @@
<dl>
<dt>start
-<dd>
+<dd>align leader string with the start
<dt>end
-<dd>
+<dd>align leader string with the end
<dt>center
-<dd>
+<dd>center leader string
<dt>space
-<dd>
+<dd>space out characters to take up all available space
+
+<dt>pattern
+<dd>default value
</dl>
+<div class=example>
+<pre>
+heading::after { content: leader(dotted, start) }
+heading::after { content: leader(dotted, end) }
+heading::after { content: leader(dotted, center) }
+heading::after { content: leader(dotted, space) }
+heading::after { content: leader(dotted, pattern) }
+</pre>
+</div>
+
+
+<!--
+<p>User Agents should attempt to align corresponding glyphs from the
+leader pattern between consecutive lines.
+-->
+
+
<p>The string inside the parenthesis is called the <em>leader string</em>.
@@ -535,9 +555,6 @@
properties, text properties, 'letter-spacing', white-space properties,
background properties, and 'color'.
-<p>User Agents should attempt to align corresponding glyphs from the
-leader pattern between consecutive lines.
-
<p>In a more complex example, the 'leader' value is combined with other
values on the 'content' property:
Received on Monday, 31 October 2011 21:35:29 UTC