align horizontal div code example

Example 1: center a div in css

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

Example 2: 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 3: how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}

Example 4: centering horizontally

div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}

Tags:

Html Example