Skip to content

Instantly share code, notes, and snippets.

@kodetop
Last active March 30, 2024 22:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kodetop/7c2f62554a21b35cb427f7a486f9c1d8 to your computer and use it in GitHub Desktop.
Save kodetop/7c2f62554a21b35cb427f7a486f9c1d8 to your computer and use it in GitHub Desktop.
Center horizontal with CSS
/* center using margin */
.container .content { margin: 0 auto; }
/* center using inline-block */
.container { text-align: center; }
.container .content { display: inline-block; }
/* center using flex */
.container { display: flex; justify-content: center; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment