CSS cheatsheet

Centering items

Easily center items both horizontally and vertically.

div {
    display: grid;
    place-items: center;
}