Centering div:
<div class="pageContainer"> The awesome content is here <div> the secret of life....</div> .... more content .... </div>
Css:
body { width: 100%; } .pageContainer { width: 600px; margin: 0px auto; }
this will horizontally center the 600px div on the page.
margin: 0 auto; sets the left and right margins to any pixel to the left and right of the page.
For example, if the page width is 800px, the rest of the margin will be 100px and 100px on the right, moving 600px to the center of the page
source share