Answers for "centralize grid content css"

CSS
2

grid center align css

div {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3px;
  justify-items: center;
  align-items: center;
}
Posted by: Guest on January-30-2022

Code answers related to "centralize grid content css"

Browse Popular Code Answers by Language