Answers for "make absolute div center with width"

CSS
-1

how to center a div with position absolute

left:50%;
				transform:translate(-50%, -50%);
Posted by: Guest on December-12-2020
0

align absolute div center

.container {
  left:0;
  right:0;

  margin-left: auto;
  margin-right: auto;

  position: absolute;
  width: 40%;

  outline: 1px solid black;
  background: white;
}
Posted by: Guest on August-12-2021

Code answers related to "make absolute div center with width"

Browse Popular Code Answers by Language