Answers for "how to align items in css grid"

CSS
3

css grid align

.grid {
  display: grid;
  align-items: center; /* left and right */
  justify-content: center; /* up and down */
}
Posted by: Guest on February-17-2020
-3

align items center in grid

article {
  display: inline-grid;
  grid-template-rows: 100px 100px 100px;
  grid-template-columns: 100px 100px 100px;
  grid-gap: 3px;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  font-size: 3em;
}
Posted by: Guest on May-31-2020

Code answers related to "how to align items in css grid"

Browse Popular Code Answers by Language