- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Nov 2011 04:46:03 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-writing-modes
In directory hutz:/tmp/cvs-serv24413
Modified Files:
Overview.html Overview.src.html
Log Message:
Use <dl> to define flow-relative directions
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-writing-modes/Overview.html,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -d -r1.220 -r1.221
--- Overview.html 18 Nov 2011 04:34:20 -0000 1.220
+++ Overview.html 18 Nov 2011 04:45:58 -0000 1.221
@@ -1916,25 +1916,41 @@
defined relative to the flow of content on the page. In an <abbr
title=left-to-right>LTR</abbr> ‘<a href="#horizontal-tb"><code
class=css>horizontal-tb</code></a>’ writing mode, they correspond to
- the top, bottom, left, and right directions, respectively.
+ the top, bottom, left, and right directions, respectively. They are
+ defined as follows:
- <p>The <dfn id=before>before</dfn> side of a box is nominally the side that
- comes earlier in the block progression, as determined by the ‘<a
- href="#writing-mode1"><code class=property>writing-mode</code></a>’
- property. Similarly the <dfn id=after>after</dfn> side is the side that
- comes later in the progression.
+ <dl>
+ <dt><dfn id=before>before</dfn>
- <p>The <dfn id=start>start</dfn> side of a box is nominally the side from
- which text of its inline base direction will start. For boxes with a used
- ‘<a href="#direction0"><code
- class=property>direction</code></a>’ value of ‘<a
- href="#ltr"><code class=css>ltr</code></a>’, this means the <a
- href="#line-left"><i>line-left</i></a> side. For boxes with a used
- ‘<a href="#direction0"><code
- class=property>direction</code></a>’ value of ‘<a
- href="#rtl"><code class=css>rtl</code></a>’, this means the <a
- href="#line-right"><i>line-right</i></a> side. The side opposite the start
- side is the <dfn id=end>end</dfn> side.
+ <dd>Nominally the side that comes earlier in the block progression, as
+ determined by the ‘<a href="#writing-mode1"><code
+ class=property>writing-mode</code></a>’ property: the physical top
+ in ‘<a href="#horizontal-tb"><code
+ class=css>horizontal-tb</code></a>’ mode, the right in ‘<a
+ href="#vertical-rl"><code class=css>vertical-rl</code></a>’, and
+ the left in ‘<a href="#vertical-lr"><code
+ class=css>vertical-lr</code></a>’.
+
+ <dt><dfn id=after>after</dfn>
+
+ <dd>The side opposite <a href="#before"><i>before</i></a>.
+
+ <dt><dfn id=start>start</dfn>
+
+ <dd>Nominally the side from which text of its inline base direction will
+ start. For boxes with a used ‘<a href="#direction0"><code
+ class=property>direction</code></a>’ value of ‘<a
+ href="#ltr"><code class=css>ltr</code></a>’, this means the <a
+ href="#line-left"><i>line-left</i></a> side. For boxes with a used
+ ‘<a href="#direction0"><code
+ class=property>direction</code></a>’ value of ‘<a
+ href="#rtl"><code class=css>rtl</code></a>’, this means the <a
+ href="#line-right"><i>line-right</i></a> side.
+
+ <dt><dfn id=end>end</dfn>
+
+ <dd>The side opposite the <a href="#start"><i>start</i></a>.
+ </dl>
<p class=note>Note that while determining the <a
href="#before"><i>before</i></a> and <a href="#after"><i>after</i></a>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-writing-modes/Overview.src.html,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -d -r1.230 -r1.231
--- Overview.src.html 18 Nov 2011 04:34:20 -0000 1.230
+++ Overview.src.html 18 Nov 2011 04:46:00 -0000 1.231
@@ -1375,19 +1375,25 @@
content on the page.
In an <abbr title="left-to-right">LTR</abbr>
''horizontal-tb'' writing mode, they correspond to the
- top, bottom, left, and right directions, respectively.
-
- <p>The <dfn>before</dfn> side of a box is nominally the side that comes
- earlier in the block progression, as determined by the 'writing-mode'
- property. Similarly the <dfn>after</dfn> side is the side that comes later
- in the progression.
+ top, bottom, left, and right directions, respectively. They are
+ defined as follows:
- <p>The <dfn>start</dfn> side of a box is nominally the side from which
- text of its inline base direction will start. For boxes with
- a used 'direction' value of ''ltr'', this means the <i>line-left</i>
- side. For boxes with a used 'direction' value of ''rtl'', this means
- the <i>line-right</i> side. The side opposite the start side is the
- <dfn>end</dfn> side.
+ <dl>
+ <dt><dfn>before</dfn>
+ <dd>Nominally the side that comes earlier in the block progression,
+ as determined by the 'writing-mode' property: the physical top
+ in ''horizontal-tb'' mode, the right in ''vertical-rl'', and the
+ left in ''vertical-lr''.
+ <dt><dfn>after</dfn>
+ <dd>The side opposite <i>before</i>.
+ <dt><dfn>start</dfn>
+ <dd>Nominally the side from which text of its inline base direction
+ will start. For boxes with a used 'direction' value of ''ltr'',
+ this means the <i>line-left</i> side. For boxes with a used 'direction'
+ value of ''rtl'', this means the <i>line-right</i> side.
+ <dt><dfn>end</dfn>
+ <dd>The side opposite the <i>start</i>.
+ </dl>
<p class="note">Note that while determining the <i>before</i> and
<i>after</i> sides of a box depends only on the 'writing-mode' property,
Received on Friday, 18 November 2011 04:46:08 UTC