css: align justify, but text on left side
why doesn't justify
work? Text stays left-aligned.
<div cla开发者_运维技巧ss="menu">
text text text
</div>
.menu{
width: 150px;
background-color: #c1c1c1;
color: #000;
text-align: justify;
}
Live sample: http://jsfiddle.net/FUkpR/
text-align: justify
doesn't justify the last line of a text block/paragraph.
Example with longer text: http://jsfiddle.net/FUkpR/1/
精彩评论