blob: 30e7ecd6b30c9f909c2d5bdaf8c8a4339fdc0b22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head><style>
#colset { column-count: 1; }
#short { height: 0px; }
#tall { height: 10000px; }
</style></head>
<body>
<div id="colset">
<div id="short">
<div id="tall"></div>
</div>
</div>
</body>
</html>
|