9 lines
133 B
CSS
9 lines
133 B
CSS
.center {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
margin-right: auto;
|
|
height: 100vh;
|
|
}
|