| 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: 150px; | 
|  | 12    height: 350px; | 
|  | 13 } | 
|  | 14 .block > :nth-child(1) { font-size:24px; } | 
|  | 15 .block > :nth-child(2) { font-size:32px; } | 
|  | 16 .block > :nth-child(3) { font-size:48px; } | 
|  | 17 .block > :nth-child(4) { font-size:64px; } | 
|  | 18 .item { | 
|  | 19    border-width: 2px 5px 3px 4px; | 
|  | 20    border-style: solid; | 
|  | 21    padding: 6px 3px 7px 8px; | 
|  | 22    margin: 10px 6px 4px 12px; | 
|  | 23 } | 
|  | 24 .extraLeftPadding { padding-left: 30px; } | 
|  | 25 .extraRightPadding { padding-right: 30px; } | 
|  | 26 .item { display: inline-block; } | 
|  | 27 </style> | 
|  | 28 | 
|  | 29 <p>1x4 with orthogonal items. Items orthogonal to the baseline-axis will use a s
    ynthesized baseline (border-box 'under' edge).<br>All items share 'first-row' Ba
    seline Context. No item shares any column-like Baseline Context.<br>Items partic
    ipate in both, column and row baseline, but since they only share a row-like Bas
    eline Context only 'aling-self' (column baseline-axis) should apply.</p> | 
|  | 30 <div class="block verticalRL"><div class="item horizontalTB">A</div><div class="
    item horizontalTB">A</div><div class="item horizontalTB">A</div><div class="item
     horizontalTB">A</div></div> | 
|  | 31 <div class="block verticalRL"><div class="item horizontalTB extraLeftPadding">A<
    /div><div class="item horizontalTB extraRightPadding">A</div><div class="item ho
    rizontalTB">A</div><div class="item horizontalTB">A</div></div> | 
| OLD | NEW | 
|---|