Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE HTML>
<html><head>
<style>
html,body {
color:black; background-color:white; font:24px/1 monospace; padding:0; margin:0;
}
.grid {
display: inline-grid;
gap: 20px 10px;
grid-template-columns: repeat(4, auto);
background-color: #fff;
color: #444;
}
.box {
background-color: #444;
color: #fff;
padding: 20px;
}
.box .box {
background-color: #ccc;
color: #444;
}
.a {
grid-column: 1 / 3;
}
.b {
grid-column: 4;
}
.c {
grid-column: 1;
grid-row: 2 / 4;
height: min-content;
}
.d {
grid-column: 2 / 5;
display: grid;
row-gap: 100px;
column-gap: 10px;
grid-template-columns: subgrid;
}
</style>
</head>
<body>
<div class="grid">
<div class="box a">A</div>
<div class="box b">B</div>
<div class="box c">C</div>
<div class="box d">
<div class="box e">E</div>
<div class="box f">F</div>
<div class="box g">G</div>
<div class="box h">H</div>
<div class="box i">I</div>
</div>
</div>
</body>
</html>