Answers for "how to center a content in css"

CSS
9

center div horizontally and vertically

.parent {
  position: relative;
}
.child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on June-22-2020
1

align div content center

.child {
  ...
  margin: 0 auto;
}
Posted by: Guest on July-30-2021
3

css align center

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}
Posted by: Guest on July-14-2020

Code answers related to "how to center a content in css"

Browse Popular Code Answers by Language