Mobile app version of vmapp.org
Login or Join
Kevin459

: Too much spacing in text I did't know why I had so much spacing issues on my site, but i figured out that it is because of the "text-align" style property, which is set to "justified". This

@Kevin459

Posted in: #Css #Text #WebsiteDesign

I did't know why I had so much spacing issues on my site, but i figured out that it is because of the "text-align" style property, which is set to "justified". This spreads out words in a row that has less words than other rows. I can fix it by switching align "left", but it doesn't look as good.

Does anyone know how to keep it justified, but fixing the spacing issue?
Thank you

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kevin459

1 Comments

Sorted by latest first Latest Oldest Best

 

@Lengel450

try define css rule for text:

word-spacing: 0px;


If this is not sufficient, try to use negative values:

word-spacing: -5px;

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme