Search code examples
htmljustifytext-justify

justify one line of html text to fill an entire line?


I have a navigation bar with links inside and its around the height I'd like it right now but I want the buttons to be evenly spaced but text-align:justify; isn't working. I'm I doing something wrong?

http://jsfiddle.net/xuEY6/


Solution

  • Add

    #navigation:after { /* Justify last line */
        content: '';
        display: inline-block;
        width: 100%;
    }
    #navigation { /* Fix added space */
        height: 1.15em;
        line-height: 1.15;
    }
    

    Demo