| <!DOCTYPE html> |
| <link href="resources/grid.css" rel="stylesheet"> |
| <link href="resources/grid-alignment.css" rel="stylesheet"> |
| <style> |
| body { margin: 0; } |
| .block { |
| background: grey; |
| float: left; |
| margin: 5px; |
| text-orientation: sideways; |
| width: 360px; |
| height: 100px; |
| } |
| .block > :nth-child(1) { font-size:24px; } |
| .block > :nth-child(2) { font-size:32px; } |
| .block > :nth-child(3) { font-size:48px; } |
| .block > :nth-child(4) { font-size:64px; } |
| .item { |
| border-width: 2px 5px 3px 4px; |
| border-style: solid; |
| padding: 6px 3px 7px 8px; |
| margin: 10px 6px 4px 12px; |
| } |
| .extraBottomPadding { padding-bottom: 30px; } |
| .item { display: inline-block; } |
| .top { vertical-align: top; } |
| </style> |
| |
| <p>4x1 with parallel items. <br>No item shares any row-like Baseline Context. All items share 'first-column' Baseline Context.<br>Orthogonal items don't participate in baseline alignment in the column-like baseline; since no item shares row-like Baseline Context, neither 'aling-self' or 'justify-self' apply.</p> |
| <div class="block directionRTL"><div class="item top verticalRL">A</div><div class="item top verticalRL">A</div><div class="item top verticalRL">A</div><div class="item top verticalRL">A</div></div> |
| <div class="block directionRTL"><div class="item top verticalRL extraBottomPadding">A</div><div class="item top verticalRL">A</div><div class="item top verticalRL">A</div><div class="item top verticalRL">A</div></div> |