Saturday, June 14, 2008

How to center a web page, in ALL browsers (using CSS)

How to center a web page, in ALL browsers (using CSS)


Below is CSS solution to center your website in ALL Browsers.

/*CSS to BODY TAG*/
body{
text-align:center;
}

/*CSS to main Container TABLE or DIV or any PlaceHolder TAG of the web page*/
#container{
width:500px;
margin-left:auto;
margin-right:auto;
text-align:left;
}

No comments:

.

.