Examples

by Matthew Vasallo

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns -->

<div id="grid">
  <div id="areaA">A</div>
  <div id="areaB">B</div>
</div>

CSS

#grid {
  display: grid;
  width: 100%;
  grid-template-columns: 300px auto 200px;
}

#areaA {
  background-color: lime;
}

#areaB {
  background-color: yellow;
}