blob: 2e171d7de1a3ec8579d72c6c3187b01908cc8c5b (
plain)
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
|
<!DOCTYPE html>
<style>
.columns {
-webkit-columns: 2;
-webkit-column-gap: 0;
column-fill: auto;
border: 2px solid black;
height: 400px;
line-height: 20px;
}
.big {
font-size: 128px;
line-height: 154px;
}
.left { float: left; }
</style>
<p>There should be a big T in the second column.</p>
<div class="columns">
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
<p>
<span class="big left">T</span>his is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
This is some text.<br>
</p>
</div>
|