Sunday, March 29, 2009

Centering your web page via a div

I center my websites in the browser and normally have the site width set to 950 pixels.

To center I create a div with the following class='wrapper', the style will be 

.wrapper {
width: 950px;
margin: 0 auto;
}

As IE as issues with the above we enter into the body tags, style="width: 100%; text-align: center;"

No comments:

Post a Comment