I have a page where only form exists and I want form to be placed in the center of the screen.
-
2020-11-21 05:14
Use This Code In CSS :
.container {
width: 600px;
height: 350px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: inline-flex;
}