View Single Post

Old 22-11-2006, 16:21   #6 (permalink)
frofi
Newbie
 
Join Date: Nov 2006
Posts: 4
iTrader: 0 / 0%
frofi is an unknown quantity at this point
Default

Who said you need tables at all? lol
The idea with div containers is to be able to exactly place whatever you need where ever you want it. If you're still new to CSS, just put this at the beginning of your style sheet:

Code:
body, body * {
			position: relative;
			margin: 0px;
			padding: 0px;
			background-repeat: repeat-x;
			}
This will ensure you a full control of margins and padding in any browser. Then use absolute positioning for your containers. That way they will not collide with each other. Once you've learned how to use relative positioning, you'll be using absolute less and less.
And don't firget to change the background-repeat value into one you desire.
frofi is offline   Reply With Quote