blob: 76be7c1c478043f9889ce291a35d365a1cbf15a9 [file] [log] [blame]
<!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: 175px;
height: 300px;
}
.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;
}
.extraLeftPadding { padding-left: 30px; }
.extraRightPadding { padding-right: 30px; }
.column { grid-auto-flow: row; }
.grid { grid: 60px 60px 75px 100px / 125px; }
</style>
<p>4x1 with orthogonal items, but opposite block-flow direction.<br>All items share 'first-row' Baseline Context. No item shares any column-like Baseline Context.<br>We have 2 baseline-sharing groups.<br>The 'justify-self' property (orthogonal to the shared context) aligns items in each group along the baseline-axis using the column-like baseline.</p>
<div class="block grid contentStart itemsBaseline"><div class="item verticalLR">A</div><div class="item verticalLR">A</div><div class="item verticalRL">A</div><div class="item verticalRL">A</div></div>
<div class="block grid contentStart itemsBaseline"><div class="item verticalLR extraLeftPadding">A</div><div class="item verticalLR extraRightPadding">A</div><div class="item verticalRL">A</div><div class="item verticalRL">A</div></div>