Answers for "align grids horizontally"

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
0

grid blocks center

display: grid;
justify-content: center;
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language