Created
April 11, 2014 02:38
-
-
Save libo1106/10438066 to your computer and use it in GitHub Desktop.
绝对定位元素水平垂直居中
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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