flexbox center on page code example

Example 1: centering with flexbox

/* HORIZONTAL */
justify-content: center;

/* VERTICAL */
align-items: center;

Example 2: how center content in css by using flex

display: flex;
    width: 60%;
    justify-content: center;
    margin: 0 auto;

Example 3: move text to center of page flexbox

// Assuming a horizontally centered row of items for the parent but it doesn't have to be
.parent {
  align-items: center;
  display: flex;
  justify-content: center;
}

.child {
  display: flex;
  align-items: center;
}

Tags:

Css Example