What's the most common way to deal with a series of block elements that need to be on a line (if javascript needs to be able to modify their widths, for example)? What are the pros and cons to applying float:left to each of them vs. using positioning to place them?
|
|
|
|
|
|
|
Floating would be my choice, but it really depends on what you wish to achieve. If you can provide a more specific example I would be able to give you a clear reason as to what and why I think you should use. However here is a brief set of pros and cons that I have come accross (I'm assuming that by positioning you mean absolute positioning): Positioning pros:
Positioning cons:
Float pros:
Float cons:
As to the clear:both element that Sebastian mentioned, There's a simple way around that. Lets say you have a container div and 2 floated divs inside. Html:
CSS:
if you were to run this code you would notice that the container div (the magenta coloured one) is only a single pixel high whereas the floated divs were correct - which is the problem Sebastian mentioned. Now you could take his advice and add a br or float the container which would not be very semantic - so here is a slightly more elegant solution. Just add overflow:hidden; to the container div like so:
Now your container should wrap the floated divs properly. |
||
|
|
|
|
The parent container does not stretch with them unless it is also assigned a float tag or there is a br with clear:both; at the bottom. I would go with the float:left instead of the positioning. The browser does all the aligning when one object stretches. So there is less for you to care about. |
||
|
|
|
|
I think i wouldn't explicitly position the elements but rather instruct the browser to use an inline layout for the elements using display:inline and let the browser handle the positioning. regarding float vs positioning i think the only way to line them up using positioning is by using absolute positioning, and that means you need to handle re-sizes(of the browser view port) in order to keep the elements in place. I think that by using the float property the browser handles the re-sizing issues for you and re-renders the element in the correct place. |
|||
|
|
|
Well, if you're not too concerned with older browsers (I'm looking at you, IE6) the best way here is to go with
Basically, it creates a box-model element without clearing before or after it, so it remains in the line. Every modern browser interprets it well. |
||||||||
|
|
|
Only disadvantage to float in situations like this for me has been that you'll either need to left justify them or right justify them -- centering is not an option. However you've mentioned you're using absolute values for widths, so you could just nest all the floated elements in a DIV element and add either margin-right or margin-left to the parent DIV to simulate center alignment. |
||
|
|
