OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <style> | 5 <style> |
6 body.hide-containers .container { | 6 body.hide-containers .container { |
7 display: none; | 7 display: none; |
8 } | 8 } |
9 | 9 |
10 .container { | 10 .container { |
11 width: 600px; | 11 width: 600px; |
12 height: 200px; | 12 height: 200px; |
13 -webkit-columns: 3; | 13 -webkit-columns: 3; |
14 columns: 3; | 14 columns: 3; |
15 column-fill: auto; | 15 column-fill: auto; |
16 line-height: 20px; /* 10 lines per page */ | 16 line-height: 20px; /* 10 lines per page */ |
17 font-size: 16px; | 17 font-size: 16px; |
18 margin: 0 0 20px 0; | 18 margin: 0 0 20px 0; |
19 padding: 0; | 19 padding: 0; |
20 overflow: hidden; | 20 overflow: hidden; |
21 orphans: 2; | 21 orphans: 2; |
| 22 widows: 1; |
22 } | 23 } |
23 | 24 |
24 .block { | 25 .block { |
25 margin: 0 0 15px 0; | 26 margin: 0 0 15px 0; |
26 padding: 0; | 27 padding: 0; |
27 } | 28 } |
28 | 29 |
29 .top { | 30 .top { |
30 color: red; | 31 color: red; |
31 } | 32 } |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 <span id="test-block-2-line-1" class="top">Block 2 Line 1</span><br> | 92 <span id="test-block-2-line-1" class="top">Block 2 Line 1</span><br> |
92 <span id="test-block-2-line-2">Block 2 Line 2</span><br> | 93 <span id="test-block-2-line-2">Block 2 Line 2</span><br> |
93 <span id="test-block-2-line-3">Block 2 Line 3</span><br> | 94 <span id="test-block-2-line-3">Block 2 Line 3</span><br> |
94 <span id="test-block-2-line-4">Block 2 Line 4</span><br> | 95 <span id="test-block-2-line-4">Block 2 Line 4</span><br> |
95 <span id="test-block-2-line-5">Block 2 Line 5</span><br> | 96 <span id="test-block-2-line-5">Block 2 Line 5</span><br> |
96 <span id="test-block-2-line-6">Block 2 Line 6</span><br> | 97 <span id="test-block-2-line-6">Block 2 Line 6</span><br> |
97 </div> | 98 </div> |
98 </div> | 99 </div> |
99 </body> | 100 </body> |
100 </html> | 101 </html> |
OLD | NEW |