Answers for "fr in grid display css"

CSS
0

fr in grid display css

.container {
  display: grid;

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

  grid-template-areas:
        "head head2 . side"
        "main main2 . side"
        "footer footer footer footer";
}
Posted by: Guest on October-11-2021

Browse Popular Code Answers by Language