OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Column clipping</title> | 4 <title>Column clipping</title> |
5 <script> | |
6 if (window.internals) | |
7 internals.settings.setRegionBasedColumnsEnabled(true); | |
8 </script> | |
9 <style> | 5 <style> |
10 body { | 6 body { |
11 width: 450px; | 7 width: 450px; |
12 color: black; | 8 color: black; |
13 background: white; | 9 background: white; |
14 } | 10 } |
15 #container { margin:0 60px; } | 11 #container { margin:0 60px; } |
16 .mc { | 12 .mc { |
17 columns: 3; | 13 columns: 3; |
18 column-gap: 15px; | 14 column-gap: 15px; |
(...skipping 22 matching lines...) Expand all Loading... |
41 <div class="hoverflow"> | 37 <div class="hoverflow"> |
42 <div class="rect"></div> | 38 <div class="rect"></div> |
43 </div> | 39 </div> |
44 <div class="hoverflow"> | 40 <div class="hoverflow"> |
45 <div class="rect"></div> | 41 <div class="rect"></div> |
46 </div> | 42 </div> |
47 </div> | 43 </div> |
48 </div> | 44 </div> |
49 </body> | 45 </body> |
50 </html> | 46 </html> |
OLD | NEW |