+ 1
how can I put this thing in the middle of the page
how CAN I put this shape at the center https://code.sololearn.com/W9KF1460Jf6X/?ref=app
1 Answer
+ 6
add those properties in CSS:
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);