CSS Flex Center secara horizontal dan vertikal
display: flex;
align-items: center;
justify-content: center;
TheDutchScorpion
display: flex;
align-items: center;
justify-content: center;
display: flex;
align-items: center;
justify-content: center;
/* order: vertical, horizontal */
/* If you need to access this quickly, just search for "fc" */
/* <div class="center">
* <div>some important stuff </div>
* </div>
*/
.center{
display: flex;
justify-content: center;
align-items: center;
}