You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once the width of each column and the height of each row of the table grid has been determined,
2364
2364
the final step of algorithm is to assign to each table-internal box its final position.
2365
2365
2366
+
The width/height/left/top calculated below define the dimensions of the CSS Layout Box,
2367
+
which means that they are accessible via the <a href="https://drafts.csswg.org/cssom-view/#extensions-to-the-htmlelement-interface">offset* properties</a> defined in CSSOM-VIEW.
2368
+
2366
2369
The <a>table-wrapper</a> box is then sized such that
2367
2370
it contains the margin box of all <a>table-non-root</a> boxes
and a table-column-group is considered to span all the rows.
2410
2413
</div>
2411
2414
2415
+
<div class="note">
2416
+
The above formula take in account 'border-spacing', and it might not be directly obvious what the effect of these mean, so here are a couple of properties of those formula:
2417
+
<ul>
2418
+
<li> the border-spacing before the first track or after the last track in a direction is not included in any track's or track-group's breadth.
2419
+
<li> the border-spacing between tracks is not included in any track's breadth, but is included in the breadth of track-groups spanning both tracks.
2420
+
</ul>
2421
+
</div>
2422
+
2412
2423
The <b>position of any table-caption having "bottom" as 'caption-side'</b> within the table is defined as the rectangle whose:
0 commit comments