Reputation: 587
Short Question… How can i justify the text in an anchor tag? JsFiDDLE
HTML
<li>
<a>
Text
</a>
</li>
CSS
li {width:200px;text-align:justify;}
span {text-align:justify;}
Upvotes: 0
Views: 331
Reputation: 78686
You need to have enough amount of text to see it. Updated http://jsfiddle.net/h6nye95o/1/
Otherwise, You might be interested in using word-spacing
and letter-spacing
to create some gaps in between the words/letters.
Upvotes: 2