Quote:
|
Originally Posted by emilpaun
Code:
<div id="container">
<div id="nav"></div>
<div id="content"></div>
</div>
then set up your css like this
Code:
body {text-align:center;}
div {text-align:justified}
#container {margin:auto;}
|
I can't get that to work in FF? Must be doing something wrong??
I use:
CSS
Code:
html, body {
padding: 0;
margin: 0;
text-align: center;
}
div#wrapper {
background-color: #eee;
width: 500px;
margin: 0 auto;
text-align: left;
}
html
Code:
<div id="wrapper">
<div id="content"></div>
</div>
Emil - you sure you posted the correct CSS?