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 width: 200px; |
| 12 } |
| 13 .block1 > :nth-child(1) { font-size:24px; } |
| 14 .block1 > :nth-child(2) { font-size:32px; } |
| 15 .block2 > :nth-child(1) { font-size:48px; } |
| 16 .block2 > :nth-child(2) { font-size:64px; } |
| 17 .item { |
| 18 border-width: 2px 5px 3px 4px; |
| 19 border-style: solid; |
| 20 padding: 6px 3px 7px 8px; |
| 21 margin: 10px 6px 4px 12px; |
| 22 } |
| 23 .extraLeftPadding { padding-left: 30px; } |
| 24 .extraRightPadding { padding-right: 30px; } |
| 25 .item { display: inline-block; } |
| 26 .block1, .block2 { float: left; } |
| 27 </style> |
| 28 |
| 29 <p>1x4 with parallel items, but opposite block-flow direction.<br>All items shar
e 'first-row' Baseline Context. No item shares any column-like Baseline Context.
<br>We have 2 baseline-sharing groups.<br>Items participate in both, column and
row baseline, but since they only share a row-like Baseline Context only 'align-
self' (column baseline-axis) should apply.<br>The Baseline Alignment may increas
e size contribution of some items.</p> |
| 30 <div class="block verticalRL"><div class="block1"><div class="item">A</div><div
class="item">A</div></div><div class="block2 verticalLR"><div class="item">A</di
v><div class="item">A</div></div></div> |
| 31 <div class="block verticalRL"><div class="block1"><div class="item extraLeftPadd
ing">A</div><div class="item extraRightPadding">A</div></div><div class="block2
verticalLR"><div class="item">A</div><div class="item">A</div></div></div></div> |
| 32 |
OLD | NEW |