How do I make a website using html that has all the content in the center

  • Thread starter Thread starter Spanky
  • Start date Start date
S

Spanky

Guest
just like on this website? How do I make a website using html that has all the content in the center just like on this website
this site yahoo answers is th one im talking about
 
AT THE VERY BEGINING of your HTML code, after the <body> tag, add this:

<div id="centerContent">

YOUR WEBSITE CONTENT WILL ALL

BE BETWEEN THESE TWO THINGS.

EVERY SINGLE BIT OF IT - EXCEPT

OF COARSE THE STUFF IN THE HEAD

TAGS

</div>

then in somewhere between the <head></head> tags, add this:

<style>
#centerContent{
width: 900; margin: auto;
border: 1px solid #999999;
text-align:center;
}
</style>

then on the <body> tag change it to this

<body text-align="center">
 
Back
Top