|
make sure the item you are floating has a width, or it will continue to take up the entire width of the page, leaving no space for anything to "float" next to it. Also img tags are inline items, so if you are floating the img itself and not a block level element (div, p, li, etc), you will need to add display: block; to your css list.
for instance, this is a block level element with a float on it, and an item below it, no float will happen:
This is a test Paragraph that is floated
This paragraph is below the float
Now watch when I add a width:
This is a test Paragraph that is floated
This paragraph is below the float
bah @ maxforums re-styling
read 194 times 8/30/2010 2:54:37 AM (last edit: 8/30/2010 3:00:08 AM)
|