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: 175px; |
| 12 height: 300px; |
| 13 } |
| 14 .block1 > :nth-child(1) { font-size:24px; } |
| 15 .block1 > :nth-child(2) { font-size:32px; } |
| 16 .block2 > :nth-child(1) { font-size:48px; } |
| 17 .block2 > :nth-child(2) { font-size:64px; } |
| 18 .item { |
| 19 display: inline-block; |
| 20 border-width: 2px 5px 3px 4px; |
| 21 border-style: solid; |
| 22 padding: 6px 3px 7px 8px; |
| 23 margin: 10px 6px 4px 12px; |
| 24 } |
| 25 .extraLeftPadding { padding-left: 30px; } |
| 26 .extraRightPadding { padding-right: 30px; } |
| 27 .area { display: inline-block; } |
| 28 .block1 > .area:nth-child(1) { height: 60px; } |
| 29 .block1 > .area:nth-child(2) { height: 60px; } |
| 30 .block2 > .area:nth-child(1) { height: 75px; } |
| 31 .block2 > .area:nth-child(2) { height: 100px; } |
| 32 .block1 { float: left; } |
| 33 .block2 { float: left; } |
| 34 </style> |
| 35 |
| 36 <p>4x1 with orthogonal items, but opposite block-flow direction.<br>All items sh
are 'first-row' Baseline Context. No item shares any column-like Baseline Contex
t.<br>We have 2 baseline-sharing groups.<br>The 'justify-self' property (orthogo
nal to the shared context) aligns items in each group along the baseline-axis us
ing the column-like baseline.</p> |
| 37 <div class="block verticalLR"><div class="block1"><div class="area"><div class="
item">A</div></div><div class="area"><div class="item">A</div></div></div><div c
lass="block2 verticalRL"><div class="area"><div class="item">A</div></div><div c
lass="area"><div class="item">A</div></div></div></div> |
| 38 <div class="block verticalLR"><div class="block1"><div class="area"><div class="
item extraLeftPadding">A</div></div><div class="area"><div class="item extraRigh
tPadding">A</div></div></div><div class="block2 verticalRL"><div class="area"><d
iv class="item">A</div></div><div class="area"><div class="item">A</div></div></
div></div> |
OLD | NEW |