I don't think the "why?" of this question is important...but what I need to do is to text-align:justify the last line of text from a DIV. Normally, the last line (or the first if there are no other lines, which is the current case) of a div isn't justified, but aligned left. I know it might not make sense at all, but I absolutely need the last line to be justified!
| |||
|
show 1 more comment
feedback
|
|
Here's a cross-browser method that works in IE6+ It combines text-align-last: justify; which is supported by IE and a variation of the :after pseudo-content method. It includes a fix to remove extra space added after one line text elements. CSS:
Additional CSS for One Line of Text:
More details: http://kristinlbradley.wordpress.com/2011/09/15/cross-browser-css-justify-last-line-paragraph-text/ | |||||
feedback
|
|
This is the cleanest hack I could come up with/find. Your mileage may vary. I tested my example in IE8, Firefox, Chrome, Opera, Safari. IE7 does not implement the If you need IE7 support, it would probably work to stick the CSS:
HTML:
Unfortunately, it seems to make the | |||||
feedback
|
|
CSS3 offers a solution for this in the form of | |||||
feedback
|
Why don't you use Edit: I think you are looking for this, as scragz said. Anyway, this works only in IE 5.5 and IE 6. | |||||||||
feedback
|
|
There is a
| |||||
|
feedback
|
|
This method worked for me: This trick is called "Ben Justification" * Well, it's not quite all with css, you need to add a little extra to the end of the line. The markup for the heading above is...
The little addition at the end of the line triggers the justification of the line by starting a new line. The additional content ( Update, 23-Jan-11: I've just updated the markup to include a space after the within the span and setting the font size to 1px for the span: this is needed for IE8. Thanks to Mamoun Gadir for pointing out IE's problems. The css for the heading above is... h1#banner { border: 1px solid #666; display: block; width: 100%; height: 1em; font-size: 1em; line-height: 1em; margin: 20px auto; padding: 0px ; text-align: justify ; } h1#banner span { font-size: 1px ; word-spacing: 1000px; } * Unless evidence demonstrates that this technique has been published before, I hereby name this technique "Ben Justification" and declare it free for all to use. Ben Clay, Jan 2010. Source: http://www.evolutioncomputing.co.uk/technical-1001.html | ||||
|
feedback
|
word-spacingand JavaScript to achieve this... – JCOC611 Jan 23 '11 at 0:20