-2

i tried white-space, word-wrap and break-word properties in css but, i am not able to remove the white space between words . please give me any other solution how to solve this issue.

TheiVa
  • 1
  • 1
  • 2
  • Are you talking about multiple spaces between words where you only need one space? – Andy Dec 14 '15 at 10:20
  • 4
    This answer has already a solution : http://stackoverflow.com/questions/15118540/css-text-align-justify-big-spaces – MrSo Dec 14 '15 at 10:25
  • I am getting more unwanted spaces between words after aligning them to text-align: justify . i tried some css properties but i am not able to reduce the space between words – TheiVa Dec 14 '15 at 10:27
  • i tried to give word spacing in negative . but it is not properly working . – TheiVa Dec 14 '15 at 10:29

1 Answers1

-1

Try to use negative value in word-spacing rule :

text-align:justify;
word-spacing:-2px;

Solution form @Laksh : CSS text align justify big spaces

Community
  • 1
  • 1
MrSo
  • 641
  • 8
  • 34