@@ -18,7 +18,7 @@ Previous Version: https://www.w3.org/TR/2001/WD-css3-multicol-20010118/
18
18
Previous Version : http://www.w3.org/1999/06/WD-css3-multicol-19990623
19
19
Editor : Håkon Wium Lie, Opera Software, howcome@opera.com, w3cid 9796
20
20
Editor : Florian Rivoal, On behalf of Bloomberg, https://florian.rivoal.net, w3cid 43241
21
- Editor : Rachel Andrew, Invited Expert , https://rachelandrew.co.uk, w3cid 81117
21
+ Editor : Rachel Andrew, Fronteers , https://rachelandrew.co.uk, w3cid 81117
22
22
Issue Tracking : Disposition of Comments https://drafts.csswg.org/css-multicol-1/issues
23
23
Abstract : This specification describes multi-column layouts in CSS, a style sheet language for the web. Using functionality described in the specification, content can be flowed into multiple columns with a gap and a rule between them.
24
24
Link Defaults : css-color (property) color, css2 (property) max-height, css-backgrounds-3 (value) hidden
@@ -198,9 +198,12 @@ The multi-column model</h2>
198
198
199
199
<figure>
200
200
<img alt="a diagram showing the various parts of multi-column layout" src="images/initial-example.svg">
201
+ <img alt="key to the conventions used to display invisible parts of diagram" src="images/invisible-elements.svg">
201
202
<figcaption> A multi-column layout with the non-visible column-span and padding inside the multicol container highlighted.</figcaption>
202
203
</figure>
203
204
205
+
206
+
204
207
<figure>
205
208
<img alt="a diagram showing the various parts of multi-column layout" src="images/initial-example-b.svg">
206
209
<figcaption> The same layout as in the first image, as it would be displayed by an implementation.</figcaption>
@@ -847,8 +850,8 @@ Column gaps and rules</h2>
847
850
848
851
<pre highlight="css">
849
852
body {
850
- column-gap: 1em ;
851
- column-rule-width: 1em ;
853
+ column-gap: 35px ;
854
+ column-rule-width: 35px ;
852
855
column-rule-style: solid;
853
856
column-rule-color: black;
854
857
}
@@ -1075,11 +1078,11 @@ h2 {
1075
1078
1076
1079
<pre highlight="css">
1077
1080
h2 {
1078
- margin: 0.5em 0;
1081
+ margin: 16px 0;
1079
1082
column-span: all;
1080
1083
background: silver
1081
1084
}
1082
- p { margin-top: 1em }
1085
+ p { margin-top: 16px }
1083
1086
</pre>
1084
1087
1085
1088
<figure>
@@ -1347,7 +1350,7 @@ Pagination and overflow outside multicol containers</h3>
1347
1350
1348
1351
<div class="example">
1349
1352
In fragmented contexts, the overflow content goes into columns in subsequent fragments.
1350
- Given the same content as in the previous example
1353
+ Given the same content as in example 31
1351
1354
and a page box that only has room for five lines of formatted text,
1352
1355
this would appear on the first page:
1353
1356
0 commit comments