OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <link href="resources/grid.css" rel="stylesheet"> |
| 3 <link href="resources/grid-alignment.css" rel="stylesheet"> |
| 4 <style> |
| 5 body { margin: 0; } |
| 6 .block { |
| 7 background: grey; |
| 8 float: left; |
| 9 margin: 5px; |
| 10 text-orientation: sideways; |
| 11 } |
| 12 .block > :nth-child(1) { font-size:24px; } |
| 13 .block > :nth-child(2) { font-size:32px; } |
| 14 .block > :nth-child(3) { font-size:48px; } |
| 15 .block > :nth-child(4) { font-size:64px; } |
| 16 .item { |
| 17 border-width: 2px 5px 3px 4px; |
| 18 border-style: solid; |
| 19 padding: 6px 3px 7px 8px; |
| 20 margin: 10px 6px 4px 12px; |
| 21 } |
| 22 .extraBottomPadding { padding-bottom: 30px; } |
| 23 .row { grid-auto-flow: column; } |
| 24 </style> |
| 25 |
| 26 <p>1x4 with parallel items.<br>All items share 'first-row' Baseline Context. No
item shares any column-like Baseline Context.<br>Items participate in both, colu
mn and row baseline, but since they only share a row-like Baseline Context only
'aling-self' (column baseline-axis) should apply.<br>The Baseline Alignment may
increase size contribution of some items.</p> |
| 27 <div class="block grid row contentStart itemsBaseline"> |
| 28 <div class="item">A</div> |
| 29 <div class="item">A</div> |
| 30 <div class="item">A</div> |
| 31 <div class="item">A</div> |
| 32 </div> |
| 33 <div class="block grid row contentStart itemsBaseline"> |
| 34 <div class="item extraBottomPadding">A</div> |
| 35 <div class="item">A</div> |
| 36 <div class="item">A</div> |
| 37 <div class="item">A</div> |
| 38 </div> |
| 39 |
OLD | NEW |