← Volver

Tutorial Interactivo de Grid

Grid Template Columns

Grid Template Rows

Justify Items

Align Items

Gap

10px
1
2
3
4
5
6
7
8
9

Código CSS Actual:

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-items: start;
  align-items: start;
  gap: 10px;
}