Skip to content

Instantly share code, notes, and snippets.

@nielk
Created October 10, 2013 18:48
Show Gist options
  • Save nielk/6923447 to your computer and use it in GitHub Desktop.
Save nielk/6923447 to your computer and use it in GitHub Desktop.
css vertical and horizontal centered element
.centered {
width: 100px;
height: 100px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
background-color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment