Use Flexbox in test page

This commit is contained in:
The Magician 2023-12-01 15:09:30 +00:00
parent 9432ac72e3
commit e682d2e83a
1 changed files with 4 additions and 2 deletions

View File

@ -10,8 +10,10 @@
.center-grid { .center-grid {
height: 100vh; height: 100vh;
display: grid;
place-items: center; display: flex;
justify-content: space-evenly;
align-items: center;
} }
</style> </style>