-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathzero-column-height.html
More file actions
24 lines (21 loc) · 921 Bytes
/
zero-column-height.html
File metadata and controls
24 lines (21 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<title>zero column-height</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-multicol-2/#ch">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-multicol-2/#cwr">
<!-- zero row-gap -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="height:10px;"></div>
</div>
<!-- non-zero row-gap -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:100px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="height:10px;"></div>
</div>
<!-- zero row-gap with spanner -->
<div style="columns:2; column-fill:auto; column-height:0px; row-gap:0px; column-wrap:wrap;">
<div style="height:10px;"></div>
<div style="column-span:all; height:10px;"></div>
<div style="height:10px;"></div>
</div>