Answers for "put something in center css"

CSS
90

center a div in css

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on September-09-2020
7

center image with position absolute

.wrapper img {
  left: 50%;
  transform: translate(-50%,0);
  position: absolute;
  z-index: 1 
}
Posted by: Guest on July-24-2020
9

position absolute center

position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
Posted by: Guest on May-24-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
4

how to center a div element

/*ADD MARGIN auto to left and right*/
.box1{
    width:80%;
    margin:0 auto;
}
Posted by: Guest on August-27-2020

Browse Popular Code Answers by Language