Skip to content

Commit 7750e81

Browse files
committed
[css2] Issue 201
from http://wiki.csswg.org/spec/css2.1 --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%403052
1 parent 97829e4 commit 7750e81

1 file changed

Lines changed: 14 additions & 10 deletions

File tree

css2/tables.src

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
<html lang="en">
3-
<!-- $Id: tables.src,v 2.121 2010-08-25 23:13:03 bbos Exp $ -->
3+
<!-- $Id: tables.src,v 2.122 2010-10-13 17:43:24 bbos Exp $ -->
44
<head>
55
<title>Tables</title>
66
</head>
@@ -488,27 +488,31 @@ col.totals { width: 5em }
488488
table') or <a href="visuren.html#inline-level">inline-level</a> (for
489489
'display: inline-table') element.
490490

491-
<p>In both cases, the table box generates an anonymous box that
491+
<p>In both cases, the table generates a principal block box called the
492+
<dfn>outer table box</dfn> that
492493
contains the table box itself and any caption boxes (in document
493-
order). The caption boxes are block-level boxes that retain their own
494+
order).
495+
The <dfn>table box</dfn> is a block-level box that contains the
496+
table's internal table boxes.
497+
The caption boxes are block-level boxes that retain their own
494498
content, padding, margin, and border areas, and are rendered as normal
495-
blocks inside the anonymous box. Whether the caption boxes are placed
499+
blocks inside the outer table box. Whether the caption boxes are placed
496500
before or after the table box is decided by the 'caption-side'
497501
property, as described below.
498502

499-
<p>The anonymous box is a 'block' box if the table is block-level, and
500-
an 'inline-block' box if the table is inline-level. The anonymous box
503+
<p>The outer table box is a 'block' box if the table is block-level, and
504+
an 'inline-block' box if the table is inline-level. The outer table box
501505
establishes a block formatting context. The table box (not the
502-
anonymous box) is used when doing baseline
503-
vertical alignment for an 'inline-table'. The width of the anonymous
506+
outer table box) is used when doing baseline
507+
vertical alignment for an 'inline-table'. The width of the outer table
504508
box is the border-edge width of the table box inside it, as described
505509
by section 17.5.2. Percentages on 'width' and 'height' on the table are
506-
relative to the anonymous box's containing block, not the anonymous box
510+
relative to the outer table box's containing block, not the outer table box
507511
itself.
508512

509513
<p>The computed values of properties 'position', 'float', 'margin-*',
510514
'top', 'right', 'bottom', and 'left' on the table box are used on the
511-
anonymous box instead of the table box. The table box uses the initial
515+
outer table box instead of the table box. The table box uses the initial
512516
values for those properties.
513517

514518
<div class="figure">

0 commit comments

Comments
 (0)