|
You want the following:
body{
margin: 0;
padding: 0;
}
That will zero out all the spaces.
Oh.. and there is no 'float: center' - it's either float: left or float: right; . If you want to center the layout, put a width on your container, and use margin: 0 auto;. In your body (for IE), add text-align: center; , then you'll have to use text-align: left in the container to put all your text back on the left where it belongs inside the container.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 09-03-2006 at 11:21 AM..
|