Input text :

Test one two three fourfive

Text is splitted by preg_split with additional processing and now result array is:

Test one
<span>two</span>
three
<span>four</span>
five

When I echo this array in loop I get this:

Test one two three four five

Four and five should be displayed together, without space.

In HTML source it looks like so:

Test one
<span>two</span>
three
<span>four</span>
five

Extra space is added after four.

When I directly write this in HTML

Test one <span>two</span> three <span>four</span>five

text is echoed correctly. It seems that new line in HTML add extra space. Does someone know what happens here?

link|improve this question
feedback

2 Answers

According to W3C, newlines are whitespace characters and should be rendered as a space by browsers.

If you want to get rid of the space, use <pre> and format your text as needed, or modify your markup so you can left-float "five."

link|improve this answer
feedback

A newline is a space. Remove that and your space disappears.

link|improve this answer
I can't remove it, it's echoed in loop. – savgoran Jan 18 at 21:43
3  
Then remove it from your echo. – Kolink Jan 18 at 21:44
1  
Show us your code. – iLLin Jan 18 at 21:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.