Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <link href="resources/grid.css" rel="stylesheet"> | |
| 4 <style> | |
| 5 .grid, .inline-grid | |
| 6 { | |
| 7 width: 20em; | |
| 8 -webkit-column-count: 2; /* Chrome, Safari, Opera */ | |
| 9 -moz-column-count: 2; /* Firefox */ | |
| 10 column-count: 2; | |
| 11 | |
| 12 -webkit-column-gap: 100px; /* Chrome, Safari, Opera */ | |
| 13 -moz-column-gap: 100px; /* Firefox */ | |
| 14 column-gap: 100px; | |
| 15 } | |
| 16 </style> | |
| 17 | |
| 18 <body> | |
| 19 | |
| 20 <div class='grid'> | |
| 21 AAAAAAAAAA BBBBBBBBBB | |
|
Julien - ping for review
2014/08/21 15:23:48
I would have left the content untouched. The reaso
Sunil Ratnu
2014/08/22 04:57:30
Done.
| |
| 22 </div> | |
| 23 | |
| 24 <div class='inline-grid'> | |
| 25 AAAAAAAAAA BBBBBBBBBB | |
| 26 </div> | |
| 27 | |
| 28 </body> | |
| 29 </html> | |
| OLD | NEW |