blob: 7741c3a7c9b9cc132ca429d6819f0add0b0015ee [file] [log] [blame]
<!DOCTYPE html>
<link href="resources/grid.css" rel="stylesheet">
<style>
.grid {
-webkit-grid-template-columns: [a] 50px [b] 50px [c] 50px [d];
-webkit-grid-auto-rows: 20px;
-webkit-grid-auto-columns: 20px;
}
</style>
<div class="grid">
<div style="-webkit-grid-column: 1 / 3; background-color: gray"></div>
<div style="-webkit-grid-column: 1 / -2; background-color: purple"></div>
<div style="-webkit-grid-column: -2 / 4; background-color: orange"></div>
<div style="-webkit-grid-column: 2 / d; background-color: gray"></div>
<div style="-webkit-grid-column: b / -1; background-color: purple"></div>
<div style="-webkit-grid-column: c / d; background-color: orange"></div>
<div style="-webkit-grid-column: a -1 / 3; background-color: gray"></div>
<div style="-webkit-grid-column: b 1 / -1; background-color: purple"></div>
<div style="-webkit-grid-column: c -1 / d; background-color: orange"></div>
<div style="-webkit-grid-column: 2 / 3; background-color: blue"></div>
<div style="-webkit-grid-column: 1 / 3; background-color: lightblue"></div>
<div style="-webkit-grid-column: 2 / 4; background-color: maroon"></div>
<div style="-webkit-grid-column: -3 / -3; background-color: lightgreen"></div>
<div style="-webkit-grid-column: 3 / 3; background-color: green"></div>
</div>