Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html, body {
color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 80px);
grid-template-rows: 1fr;
height: 300px;
gap: 5px;
padding: 2px;
margin: 5px;
border: 1px solid;
}
item {
display: block;
color: white;
}
</style>
</head>
<body>
<div class="grid" style="align-items: end;">
<item style="grid-row: 1; grid-column: 1 / 3; height: 60px; background: #f4a0a0;">1</item>
<item style="grid-row: 1; grid-column: 3; height: 60px; background: #2ca02c;">2</item>
<item style="grid-row: 1; grid-column: 1 / 4; height: 50px; margin-bottom: 65px; background: #ff7f0e;">3</item>
<item style="grid-row: 1; grid-column: 1; height: 60px; margin-bottom: 120px; background: #ffbb78;">4</item>
<item style="grid-row: 1; grid-column: 2; height: 60px; margin-bottom: 120px; background: #aad4f5;">5</item>
<item style="grid-row: 1; grid-column: 1 / 3; height: 115px; margin-bottom: 185px; background: #c5b0d5;">6</item>
<item style="grid-row: 1; grid-column: 3; height: 180px; margin-bottom: 120px; background: #98df8a;">7</item>
</div>
<div class="grid" style="align-items: start;">
<item style="grid-row: 1; grid-column: 2 / 4; height: 60px; background: #f4a0a0;">1</item>
<item style="grid-row: 1; grid-column: 1; height: 60px; background: #2ca02c;">2</item>
<item style="grid-row: 1; grid-column: 1 / 4; height: 50px; margin-top: 65px; background: #ff7f0e;">3</item>
<item style="grid-row: 1; grid-column: 3; height: 60px; margin-top: 120px; background: #ffbb78;">4</item>
<item style="grid-row: 1; grid-column: 2; height: 60px; margin-top: 120px; background: #aad4f5;">5</item>
<item style="grid-row: 1; grid-column: 2 / 4; height: 115px; margin-top: 185px; background: #c5b0d5;">6</item>
<item style="grid-row: 1; grid-column: 1; height: 180px; margin-top: 120px; background: #98df8a;">7</item>
</div>
</body>
</html>