DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Vertical Centering In CSS
#center{
width:100px;
height:100px;
position:absolute;
top:50%;
left:50%;
margin-top:-50px;
margin-left:-50px;
}
usage: <img id="center" src="path/image.gif":






Comments
Snippets Manager replied on Mon, 2012/05/07 - 2:13pm
Snippets Manager replied on Mon, 2012/05/07 - 2:13pm