Answers for "center horizontally image in div position: absolute;"

CSS
8

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

Code answers related to "center horizontally image in div position: absolute;"

Browse Popular Code Answers by Language