DEV Community

Discussion on: 3 ways to centre a div + life advice

Collapse
 
tilkinsc profile image
Cody Tilkins

For those who are wondering,

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

<section class="flex_center">
    <div>
        test
    </div>
    <div>
        test2
    </div>
</section>
Enter fullscreen mode Exit fullscreen mode