+ 4
How to make the animation start at the center of the page?
3 odpowiedzi
+ 3
Center the div element either by using transform property or change property of it's parent element, i.e. body
body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}
+ 2
Remove css selector position:absolute; from div would make the code center.
https://code.sololearn.com/WIXB1GZl1zL1/?ref=app
+ 1
Ok thanks