+ 1
How do i create the left and right spaces for uses such as adding a side menu or advert space?
6 odpowiedzi
+ 1
The space is "created" automatically when you float or position the elements correctly.
+ 1
When you float an element, you have to clear the float for the element that comes after it:
clear: left; clear: right; or clear : both;
Then they'll have the default left positioning.
To center these elements, give them a width and margin: 0px auto; /adjust the margin*/.
Don't use tables for layout.
0
if i float right and left ...how am i able to centre the rest of the body ?
0
do i have to use tables ?
0
do i have to use tables ?
0
what you want to create?