Answers for "how to align a content at the middle of a div with translate"

0

how to align a content at the middle of a div with translate

.div{
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on July-05-2021

Code answers related to "how to align a content at the middle of a div with translate"

Browse Popular Code Answers by Language