Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Here is a div tip. If you want to center it horizontally and vertically, you can use flexbox. It’s really easy.

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

Ta! After years now I finally know!