Never been to TextSnippets 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 (or not, you can keep them private!)

fixedWidth.css (See related posts)

// description of your code here

@charset "iso-8859-1";

/*******************************************************************************
*  fixedWidth.css : 2004-07-19 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  Provide a fixed width to the layout
*******************************************************************************/

* html body
{
        text-align: center;   /* hack to center this under IE5 */
}
* html #pageWrapper
{
        text-align: left;     /* keep the content left-aligned */
}

#pageWrapper
{
        width: 700px;
        margin-left: auto;
        margin-right: auto;
}

/******************************************************************************/

You need to create an account or log in to post comments to this site.


Related Posts