---
title: "How Do You Center Things In A Div?"
date: 2020-11-25T14:08:53.000Z
author: Z.SHINCHVEN
tags: [CSS, FlexBox]
canonical: https://atlassc.net/2020/11/26/how-do-you-center-things-in-a-div
---
## FlexBox

```CSS
.container{
  display: flex;
  flex-direction: row;
  justify-content: center;  // horizontal
  align-items: center;      // vertical
}
```
