Created
March 27, 2009 01:11
-
-
Save juarezpaf/86485 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<title>Centralizando elemento na tela</title> | |
<style type="text/css"> | |
#center { | |
width: 100px; | |
height: 200px; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
margin: -50px 0 0 -100px; /*O truque é colocar essas margins negativas com metade da largura e altura*/ | |
} | |
</style> | |
</head> | |
<body> | |
<div id="center"> | |
Bla bla bla | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment