I want to position a (or a
) element at the center of the screen irrespective of screen size. In other words, the space le
-
2020-11-28 19:14
Use flex. Much simpler and will work regardless of your div size:
.center-screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
I'm in the center