Skip to content

Instantly share code, notes, and snippets.

@gearmobile
Created May 28, 2015 18:38
Show Gist options
  • Save gearmobile/f409eaaebe5960286ac3 to your computer and use it in GitHub Desktop.
Save gearmobile/f409eaaebe5960286ac3 to your computer and use it in GitHub Desktop.
Element has fixed width and height
.parent {
position: relative;
}
.child {
width: 300px;
height: 100px;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
margin: -70px 0 0 -170px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment