Created
April 18, 2014 04:06
-
-
Save 64lines/11024420 to your computer and use it in GitHub Desktop.
[CSS] - Center DIV
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
#idOfTheDiv { | |
width: 400px; /* here you put the width that you need */ | |
height: 200px; /* here you put the height that you need */ | |
position:absolute; | |
left:50%; | |
top:50%; | |
margin-left:-200px; /* this number always to be the width divided two in negative */ | |
margin-top:-100px; /* this number always to be the height divided two in negative */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment