Answers for "center content in tranlate y"

6

how to center with translate

.parent{  position: relative;}.child{  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);}
Posted by: Guest on July-14-2020
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

Browse Popular Code Answers by Language