Skip to content Skip to sidebar Skip to footer

Why Doesn't This Text-align:justified Work?

The problem I am facing is that inside a div having text-align:justified;, there is a bunch of a elements, on which the text-align:justified is Not working. So I wrote an SSCCE to

Solution 1:

Probably, the problem is that in your live code you have no white space between the a elements, while in the SSCCE there are some. text-align:justify works by widening the white spaces, so if there are no white spaces it can't happen


Post a Comment for "Why Doesn't This Text-align:justified Work?"