-
Notifications
You must be signed in to change notification settings - Fork 1
/
css-break-3.xhtml
115 lines (115 loc) · 4.68 KB
/
css-break-3.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
<head>
<meta charset="utf-8" />
<title>CSS Fragmentation Module Level 3</title>
<style>
.test {
border: 2px solid;
padding: 2px;
}
.test + .test {
margin-top: 0.5em;
}
.test.break-before-page {
break-before: page;
}
.test.break-after-page {
break-after: page;
}
.multicol {
column-count: 3;
margin: 1em 0 3em;
}
.test.break-before-column {
break-before: column;
}
.test.break-after-column {
break-after: column;
}
.test.break-inside-avoid {
break-inside: avoid;
}
.test.orphans-widows-1 {
orphans: 1;
widows: 1;
}
.test.orphans-widows-2 {
orphans: 2;
widows: 2;
}
.test.box-decoration-break-slice {
box-decoration-break: slice;
}
.test.box-decoration-break-clone {
box-decoration-break: clone;
}
</style>
</head>
<body>
<h1>CSS Fragmentation Module Level 3</h1>
<section id="break-before-after">
<h2>break-before, break-after プロパティ</h2>
<div class="test break-before-page">
break-before: page により、このボックスの前で改ページされていればOK
</div>
<div class="test break-after-page">
break-after: page により、このボックスの後で改ページされていればOK
</div>
<div class="multicol">
<div class="test">あああああ</div>
<div class="test break-before-column">
break-before: column により、このボックスの前で改段されていればOK
</div>
<div class="test break-after-column">
break-after: column により、このボックスの後で改段されていればOK
</div>
<div class="test">あああああ</div>
</div>
</section>
<section id="break-inside">
<h2>break-inside プロパティ</h2>
<div class="multicol">
<div class="test">あああああ</div>
<div class="test break-inside-avoid">
break-inside: avoid により、このボックス内で改ページも改段もされなければOK。ああああああああああああああああああああああああああああああああああああああああああああああああああああ
</div>
<div class="test">あああああ</div>
</div>
</section>
<section id="orphans-widows">
<h2>orphans, widows プロパティ</h2>
<div class="multicol">
<div class="test">ああああああああああああああああああああああああああああああああああああああああああああ</div>
<div class="test orphans-widows-1">
orphans: 1; widows: 1 により、このボックス内での段分割で1行だけの孤立行ができてもOK。ああああああああああああああああああああああああああああああああああああああああああああああああああああ
</div>
<div class="test">ああああああああああああああああああああああああああああああああああああああああああああ</div>
</div>
<div class="multicol">
<div class="test">ああああああああああああああああああああああああああああああああああああああああああああ</div>
<div class="test orphans-widows-2">
orphans: 2; widows: 2 により、このボックス内での段分割で1行だけの孤立行が生じなければOK。ああああああああああああああああああああああああああああああああああああああああああああああああああああ
</div>
<div class="test">ああああああああああああああああああああああああああああああああああああああああああああ</div>
</div>
</section>
<section id="box-decoration-break">
<h2>box-decoration-break プロパティ</h2>
<div class="multicol">
<div class="test">あああああ</div>
<div class="test box-decoration-break-slice">
box-decoration-break: slice により、このボックスの分割された辺にボーダーがなければOK。ああああああああああああああああああああああああああああああああああああああああああああああああああああ
</div>
<div class="test">あああああ</div>
</div>
<div class="multicol">
<div class="test">あああああ</div>
<div class="test box-decoration-break-clone">
box-decoration-break: clone により、このボックスの分割された辺にボーダーがあればOK。ああああああああああああああああああああああああああああああああああああああああああああああああああああ
</div>
<div class="test">あああああ</div>
</div>
</section>
</body>
</html>