Is there a way to automatically justify words using letter spacing, each in its row, to a defined width, using CSS?

For example, "Something like this" would look, well, something like this:

"Something like this" would look something like this

Is there a non-obtrusive way to apply such styling to my text? I believe pure CSS doesn't have this option (at least not with CSS versions before 3, CSS3 seems to have a text-justify property, but it's not well supported yet), so js solutions would be fine also.

link|improve this question

Are you willing to employ any particular JS library to achieve this, or vanilla JS only? – David Thomas Dec 6 '10 at 0:10
@David: jQuery would be preferred, but it's a rather simple task so it can be ported between frameworks without problems IMO. – Groo Dec 7 '10 at 11:33
feedback

2 Answers

up vote 2 down vote accepted

Here's a script which can do it. It isn't pretty, but maybe you can hack it to meet your needs. (Updated to handle resizing)

<html>
<head>
<style>
#character_justify {
    position: relative;
    width: 40%;
    border: 1px solid red;
    font-size: 32pt;
    margin: 0;
    padding: 0;
}
#character_justify * {
    margin: 0;
    padding: 0;
    border: none;
}
</style>
<script>
function SplitText(node)
{
    var text = node.nodeValue.replace(/^\s*|\s(?=\s)|\s*$/g, "");

    for(var i = 0; i < text.length; i++)
    {
        var letter = document.createElement("span");
        letter.style.display = "inline-block";
        letter.style.position = "absolute";
        letter.appendChild(document.createTextNode(text.charAt(i)));
        node.parentNode.insertBefore(letter, node);

        var positionRatio = i / (text.length - 1);
        var textWidth = letter.clientWidth;

        var indent = 100 * positionRatio;
        var offset = -textWidth * positionRatio;
        letter.style.left = indent + "%";
        letter.style.marginLeft = offset + "px";

        //console.log("Letter ", text[i], ", Index ", i, ", Width ", textWidth, ", Indent ", indent, ", Offset ", offset);
    }

    node.parentNode.removeChild(node);
}

function Justify()
{
    var TEXT_NODE = 3;
    var elem = document.getElementById("character_justify");
    elem = elem.firstChild;

    while(elem)
    {
        var nextElem = elem.nextSibling;

        if(elem.nodeType == TEXT_NODE)
            SplitText(elem);

        elem = nextElem;
    }
}

</script>
</head>
<body onload="Justify()">
<p id="character_justify">
Something<br/>
Like<br/>
This
</p>
</body>
link|improve this answer
Thanks, it works great. For those who are interested, this script finds a div by its Id, inserts a separate div for each character at calculated indents, and then removes the initial div. – Groo Dec 4 '10 at 23:38
There is also a slight issue that characters are positioned at regular intervals instead of having fixed spacing between them. This looks strange when you have characters of different width (like "WiW" for example). I wondered if I could simply add spaces between letters and use browser justification like each character was a word, but they don't get justified if there is <br/> at the end. Do you have a suggestion? – Groo Dec 7 '10 at 11:36
Ok, forgot about this, I will accept it now. I didn't use it at the end, but it's close enough. – Groo Dec 20 '10 at 13:27
feedback

What is wrong with text-align: justify? I think I might be misunderstanding your question.

link|improve this answer
2  
@CC: It doesn't justify single words by increasing letter spacing. – Groo Dec 5 '10 at 19:08
feedback

Your Answer

 
or
required, but never shown

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