Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created April 11, 2014 02:38
Show Gist options
  • Save libo1106/10438066 to your computer and use it in GitHub Desktop.
Save libo1106/10438066 to your computer and use it in GitHub Desktop.
绝对定位元素水平垂直居中
.element {
width: 600px; height: 400px;
position: absolute; left: 0; top: 0; right: 0; bottom: 0;
margin: auto; /* 有了这个就自动居中了 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment