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.
Asked
Active
Viewed 3,479 times
-2
-
Are you talking about multiple spaces between words where you only need one space? – Andy Dec 14 '15 at 10:20
-
4This 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 Answers
-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
-
1while giving 'word-spacing:-2px;' all words not getting same space . some words getting more space between them – TheiVa Dec 14 '15 at 11:05
-