Skip to content

Instantly share code, notes, and snippets.

@kpman
Created June 1, 2014 04:00
Show Gist options
  • Save kpman/c7b764a1ad0eedea57cc to your computer and use it in GitHub Desktop.
Save kpman/c7b764a1ad0eedea57cc to your computer and use it in GitHub Desktop.
A Pen by kpman.

element vertical center

position the element vertical center with pure CSS skill from Front-End Developer Taiwan Group

A Pen by kpman on CodePen.

License.

div {
margin: auto;
width: 100px;
height: 100px;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute; /* important */
background: DodgerBlue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment