Skip to content

Instantly share code, notes, and snippets.

@bjrmatos
Created May 13, 2014 17:23
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 bjrmatos/3ee4071937b708d93706 to your computer and use it in GitHub Desktop.
Save bjrmatos/3ee4071937b708d93706 to your computer and use it in GitHub Desktop.
CSS Vertical and Horizontal center
.centrar {
width: 300px;
height: 200px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px; /*(width/2)*/
margin-top: -100px; /*(height/2)*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment