<div class="container">
  <div class="box box-1">1.</div>
  <div class="box box-2">2.</div>
  <div class="box box-3">3.</div>
  <div class="box box-4">4.</div>
  <div class="box box-5">5.</div>
  <div class="box box-6">6.</div>
  <div class="box box-7">7.</div>
  <div class="box box-8">8.</div>
  <div class="box box-9">9.</div>
</div>
* {
  box-sizing: border-box;
  background: whitesmoke;
}
.container {
  display: grid;
  grid-template-columns: minmax(100px, 200px) 1fr 1fr;
  grid-template-rows: 100px 100px 100px;
  grid-gap: 10px;
  margin-top: 20px;
}
.box {
  font-family: sans-serif;
  font-size: 24px;
  text-align: center;
  color: white;
  line-height: 2;
  padding: 20px;
}
.box-1 {
  background: limegreen;
}
.box-2 {
  background: crimson;
}
.box-3 {
  background: cornflowerblue;
}
.box-4 {
  background: orange;
}
.box-5 {
  background: mediumseagreen;
}
.box-6 {
  background: hotpink;
}
.box-7 {
  background: orchid;
}
.box-8 {
  background: indianred;
}
.box-9 {
  background: darkturquoise;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.