Skip to content

Instantly share code, notes, and snippets.

@devluis
Created July 29, 2013 17:34
Show Gist options
  • Save devluis/6106036 to your computer and use it in GitHub Desktop.
Save devluis/6106036 to your computer and use it in GitHub Desktop.
Centrar un div en forma vertical y horizontal utlizando solo CSS
position: absolute;
left: 50%;
top: 50%;
width: 300px;
height: 200px;
margin-top: -100px;
margin-left: -150px;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment