I've got a basic layout where the body div is set to a specific width. And with margins left and right are set to auto. Resulting in the div being centered.
Now, when it now comes to positioning all sub elements within this div, is it best to use absolute positioning or fixed coordinates? These sub elements are basically columns of text, some images and a few headings. I've found that floating all of them to the left makes them stack behind each other. Which is basically what I want. But would it be better to specify the coordinates? I ran into a small common margin bug with IE you see. And I know absolute positioning would fix it. But would that be a dirty fix?
I mean, the layout itself is liquid in some sense. But the body div has its width. So the sub elements won't move around regardless of resolution.