Centering For All Browsers And Resolutions?

Status
Not open for further replies.

kjb1891

New member
Mar 12, 2007
216
1
0
This probably seems like an easy question for most of you, but I can't get it to work right. How can you center align a webpage for every browser and screen resolution?
 


for the most part, this works for me... i just ripped this out of a site im working on so ignore the lines iwth ? if you want. The important line is in #site, the margin line. This does not work in IE 5.5 i think


Code:
*{
 padding:0px;
 margin:0px;
}
body{
 margin:0px;
 padding:0px;
? background-image:url(images/siteBG.gif);
}
 
#site{
  margin:0px auto 0px auto;
? width:990px;
? background-image:url(images/siteBG.jpg);

}
 
Status
Not open for further replies.