Essentially, I'm trying to achieve the affect of "text-align:justify" but with floating block elements. I have many blocks that I want to justify-align.

Ie. each line is horizontally-spaced differently to make sure lengths of each line are the same. (Non-ragged right edge).

Is there a way to do this with CSS? If not, is there a suitable JS library to achieve this? Or is this just infeasible?

link|improve this question

80% accept rate
It would help if you posted a sample of what you have done so far, or a mockup of what you are trying to achieve. – Phrogz Dec 6 '10 at 22:47
What are those blocks? Images? Also, do they have an equal height? – Šime Vidas Dec 6 '10 at 22:49
I would work if you defined display:inline-block on the blocks instead of floating them. – Šime Vidas Dec 6 '10 at 22:55
feedback

1 Answer

up vote 4 down vote accepted

If the items are not actually floating, you can use position:absolute; left:1em; right:1em to have CSS calculate the widths of the items for you based on offsets from some positioned parent.

If you are only using float because you have some block-level items you are trying to make flow, use display:inline-block on the items instead of floating them. If the parent element has text-align:justify this should give you the effect (I imagine that) you want.

Here is a simple test showing you the result of inline-block with text-align:justify.

Edit: I've updated the simple test to more clearly show that the left and right edges are always aligned except for the last line.

link|improve this answer
variation on the demo: jsfiddle.net/mfmfR/2 – Šime Vidas Dec 6 '10 at 23:04
1  
that is the intended effect, but it doesn't work in IE7. I've modified it for IE7 (jsfiddle.net/mfmfR/3), and I think this may be the answer I'm looking for. I'll have to double check that this actually works for my existing code. Thanks for the pointer! – Rocketmonkeys Dec 8 '10 at 5:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.