CSS Grid Layout: The Fr Unit

Fr is a fractional unit and 1fr is for 1 part of the available space.
.container {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 100px 200px 100px;
}
blog

copyright © 2021 Anna Gapyuk all rights reserved