|
Another way of getting it to work in both FF and IE is:-
/*---- ( layout - background etc ) ----*/
body {
text-align:center; /* centers for IE, not FF*/
}
/*-- ( outer wrapper for whole page) --*/
#container {
margin: 0px auto; /*centers for FF not IE*/
text-align:left; /* puts everything else back to the left */
}
|