Centre a box, two ways

Css

Grid is one line. Flex is three and gives you control over the axes separately.

.centre-grid {
  display: grid;
  place-items: center;
}

.centre-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

More in Web & CSS

Random picks