vertical center css in div code example

Example 1: css vertical center

/*Remove comment to become a better programmer. */
/* No Flexbox */
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* With Flexbox */

.parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

Example 2: css center div vertically

/* center vertically */
/* No Flexbox */
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}



/* With Flexbox */

.parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

Tags:

Misc Example