Never been to DZone Snippets before?

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

About this user

Alex Williams http://www.alexwilliams.ca

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Center HTML content horizontally using CSS

Ahh the infamous CSS centering thing... make sure to specify the width and set the right/left margins to 'auto'

   1  
   2  #content {
   3          margin: 0 auto;
   4          width: 740px;
   5  }


Your HTML would look something like this:
   1  
   2  <div id="content">
   3          This is centered
   4  </div>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS