Skip to content

Commit 1663a6b

Browse files
committed
Fix markup errors
1 parent 7cd2c16 commit 1663a6b

2 files changed

Lines changed: 39 additions & 11 deletions

File tree

css3-break/Overview.html

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,16 @@ <h2 class="no-num no-toc" id=contents> Table of contents</h2>
177177

178178
<li><a href="#breaking-boxes"><span class=secno>5. </span> Box Model for
179179
Breaking</a>
180+
<ul class=toc>
181+
<li><a href="#varying-size-boxes"><span class=secno>5.1. </span>
182+
Breaking into Varying-size Fragmenters</a>
183+
184+
<li><a href="#break-margins"><span class=secno>5.2. </span> Margins at
185+
Breaks</a>
186+
187+
<li><a href="#break-decoration"><span class=secno>5.3. </span>
188+
Decorating Box Breaks</a>
189+
</ul>
180190

181191
<li><a href="#conformance"><span class=secno>6. </span> Conformance</a>
182192
<ul class=toc>
@@ -931,13 +941,16 @@ <h3 id=best-breaks><span class=secno>4.5. </span> Optimizing Unforced
931941

932942
<h2 id=breaking-boxes><span class=secno>5. </span> Box Model for Breaking</h2>
933943

934-
<p> When a flow is fragmented into varying-size fragmenters, the following
935-
rules are observed for adapting layout:
936-
937944
<p class=note> The sizing terminology used in this section is defined in
938945
Appendix D of <a href="#CSS3-WRITING-MODES"
939946
rel=biblioentry>[CSS3-WRITING-MODES]<!--{{CSS3-WRITING-MODES}}--></a>.
940947

948+
<h3 id=varying-size-boxes><span class=secno>5.1. </span> Breaking into
949+
Varying-size Fragmenters</h3>
950+
951+
<p> When a flow is fragmented into varying-size fragmenters, the following
952+
rules are observed for adapting layout:
953+
941954
<ul>
942955
<li> Intrinsic sizes are calculated and maintained across the entire
943956
element. Where an initial containing block size is needed, assume an
@@ -1097,11 +1110,16 @@ <h2 id=breaking-boxes><span class=secno>5. </span> Box Model for Breaking</h2>
10971110
</ul>
10981111
</div>
10991112

1113+
<h3 id=break-margins><span class=secno>5.2. </span> Margins at Breaks</h3>
1114+
11001115
<p> When an unforced break occurs between block-level boxes, any adjoining
11011116
margins are set to zero. When a forced break occurs there, any margins
11021117
before the break are truncated, but margins after the break are preserved.
11031118

11041119

1120+
<h3 id=break-decoration><span class=secno>5.3. </span> Decorating Box
1121+
Breaks</h3>
1122+
11051123
<p> When a break splits a box, the &lsquo;<code
11061124
class=property>box-decoration-break</code>&rsquo; property controls
11071125
whether the box's margins, borders, and padding wrap the fragment effect

css3-break/Overview.src.html

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE html public '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
22
<html lang="en">
33
<head profile="http://www.w3.org/2006/03/hcard">
4-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
55
<title>CSS Fragmentation Module Level 3</title>
6-
<link rel="stylesheet" type="text/css" href="../default.css" />
7-
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css" />
6+
<link rel="stylesheet" type="text/css" href="../default.css">
7+
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css">
88
</head>
99
<body>
1010
<div class="head">
@@ -492,7 +492,7 @@ <h3 id="possible-breaks">
492492
<dd>
493493
table column group boxes, table column boxes, multi-column column boxes
494494
</dd>
495-
</dd>
495+
</dl>
496496
<dt id="btw-lines">Class 2</dt>
497497
<dd>
498498
Between line boxes inside a block container box.
@@ -706,14 +706,18 @@ <h3 id="best-breaks">
706706
<h2 id="breaking-boxes">
707707
Box Model for Breaking</h2>
708708

709-
<p>
710-
When a flow is fragmented into varying-size fragmenters, the following
711-
rules are observed for adapting layout:
712-
</p>
713709
<p class="note">
714710
The sizing terminology used in this section is defined in Appendix D of
715711
[[CSS3-WRITING-MODES]].
716712
</p>
713+
714+
<h3 id="varying-size-boxes">
715+
Breaking into Varying-size Fragmenters</h3>
716+
717+
<p>
718+
When a flow is fragmented into varying-size fragmenters, the following
719+
rules are observed for adapting layout:
720+
</p>
717721
<ul>
718722
<li>
719723
Intrinsic sizes are calculated and maintained across the entire element.
@@ -878,12 +882,18 @@ <h2 id="breaking-boxes">
878882
</ul>
879883
</div>
880884

885+
<h3 id="break-margins">
886+
Margins at Breaks</h3>
887+
881888
<p>
882889
When an unforced break occurs between block-level boxes, any adjoining
883890
margins are set to zero. When a forced break occurs there, any margins
884891
before the break are truncated, but margins after the break are preserved.
885892
</p>
886893

894+
<h3 id="break-decoration">
895+
Decorating Box Breaks</h3>
896+
887897
<p>
888898
When a break splits a box, the 'box-decoration-break' property controls
889899
whether the box's margins, borders, and padding wrap the fragment effect

0 commit comments

Comments
 (0)