| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link href="resources/grid.css" rel="stylesheet"> | 4 <link href="resources/grid.css" rel="stylesheet"> |
| 5 <style> | 5 <style> |
| 6 .grid { | 6 .grid { |
| 7 grid-template-rows: 5px; | 7 grid-template-rows: 5px; |
| 8 grid-template-columns: 10px; | 8 grid-template-columns: 10px; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .gridAutoFixedFixed { | 11 .gridAutoFixedFixed { |
| 12 grid-auto-rows: 30px; | 12 grid-auto-rows: 30px; |
| 13 grid-auto-columns: 50px; | 13 grid-auto-columns: 50px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .gridAutoMinMax { | 16 .gridAutoMinMax { |
| 17 font: 10/1 Ahem; | 17 font: 10px/1 Ahem; |
| 18 width: 1000px; | 18 width: 1000px; |
| 19 grid-auto-rows: minmax(10em, 15px); | 19 grid-auto-rows: minmax(10em, 15px); |
| 20 grid-auto-columns: minmax(30%, 100px); | 20 grid-auto-columns: minmax(30%, 100px); |
| 21 } | 21 } |
| 22 | 22 |
| 23 .gridAutoMinMaxContent { | 23 .gridAutoMinMaxContent { |
| 24 grid-auto-rows: min-content; | 24 grid-auto-rows: min-content; |
| 25 grid-auto-columns: max-content; | 25 grid-auto-columns: max-content; |
| 26 } | 26 } |
| 27 </style> | 27 </style> |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 <div class="unconstrainedContainer" style="position: relative"> | 111 <div class="unconstrainedContainer" style="position: relative"> |
| 112 <div class="grid gridAutoMinMaxContent gridAutoFlowColumnDense"> | 112 <div class="grid gridAutoMinMaxContent gridAutoFlowColumnDense"> |
| 113 <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="10" data-
offset-y="0" data-expected-width="120" data-expected-height="5">XXXXX XXXXXX</di
v> | 113 <div class="sizedToGridArea firstRowAutoColumn" data-offset-x="10" data-
offset-y="0" data-expected-width="120" data-expected-height="5">XXXXX XXXXXX</di
v> |
| 114 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="0" data-
offset-y="0" data-expected-width="10" data-expected-height="5"></div> | 114 <div class="sizedToGridArea firstRowFirstColumn" data-offset-x="0" data-
offset-y="0" data-expected-width="10" data-expected-height="5"></div> |
| 115 </div> | 115 </div> |
| 116 </div> | 116 </div> |
| 117 | 117 |
| 118 </body> | 118 </body> |
| 119 </html> | 119 </html> |
| OLD | NEW |