Answers for "CSS horizontally Center"

CSS
24

center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020
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 "CSS horizontally Center"

Browse Popular Code Answers by Language