Skip to content

Instantly share code, notes, and snippets.

@edgarMejia
Last active January 11, 2019 22:08
Show Gist options
  • Save edgarMejia/ffe3ef581bc405a4093e2532e342b5b4 to your computer and use it in GitHub Desktop.
Save edgarMejia/ffe3ef581bc405a4093e2532e342b5b4 to your computer and use it in GitHub Desktop.
Distintas formas de centrar un elemento en html.
/*1.-*/ .center {display: block; margin: auto;} //Se aplica al elemento que deseas centrar.
/*2.-*/ .center {text-align: center;} //Se aplica al padre.
/*3.-*/ .center {margin: 0px auto;} //Se aplica al padre.
/*4.-*/ .text-center {text-align: center;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment