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
CSS To Horizontally Center A DIV
CSS for horizontally aligning a div in center.
#wrapper
{
text-align: center;
}
#centered
{
position: relative;
width: 200px;
margin: 0 auto;
text-align: left;
}
<div id="wrapper">
<div id="centered">
I am the center of world!
</div>
</div>




