</>
CSS - How to center element both horizontally and vertically
I often find myself do a Google search for this. So the following snippet demonstrates how to do this.
- Using Flexbox
.wrapper {display: flex;align-items: center;justify-content: center;}
- Using CSS Grid
.wrapper {display: grid;place-items: center;}