Answers for "horizontal alignment center css"

26

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;
}
Posted by: Guest on January-11-2021
1

css center horizontally

text-align: center; /*also works for images or anything inside the object (I think)*/
Posted by: Guest on July-12-2021

Code answers related to "horizontal alignment center css"

Browse Popular Code Answers by Language