Answers for "center a cpontent css"

CSS
85

center a div in css

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on September-09-2020
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

center a cpontent css

.center_me {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language