|
First of all, making everything position:absolute is a bad approach. Learn to use the normal document flow. Putting all those images into your code isn't going to help either. Using CSS to layout a page is not the same as slicing for tables either. Images like that are best suited as backgrounds to the divs - if you must do that.
Level the playing field - set margin and padding on the body and all elements to 0 first, adjust as needed.
body{
margin: 0;
padding: 0;
}
same goes for your divs
__________________
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
|