Question

<!DOCTYPE HTML><HTML><HEAD><style>
body {
    font-family: "HelveticaNeue";
    font-size: 12pt;
}
</style>
</HEAD><BODY> Особенно часто такие ситуации возникают при попытках реализовать программно полет мысли дизайнера с учетом технических особенностей таких систем.
</br>
О том, как мы решаем такие задачи при работе над мобильным приложением xxx, мы расскажем в этой статье.</BODY></HTML>

Could anyone tell me what's wrong with the spaces in the second sentence (please look at jsfiddle http://jsfiddle.net/qx7NY/3/)?

Here is what the browser shows me:

enter image description here

How can I fix the problem?

Was it helpful?

Solution

I inspected that code block (with Chrome's inspector) and saw this:

screenshot

You used thin spaces (&thinsp; or ) instead of normal spaces (). I have no idea where you got them, but apparently the font you're using doesn't support thin spaces, so they don't show up.

Simply change all the s (thin spaces) into normal spaces, and it will work fine. (Or use a find/replace tool.)

OTHER TIPS

it's not any spaces in second sentence! you can type this sentence.

or

remove web copy format:

  1. copy the sentence
  2. paste in notepad
  3. copy sentence again

Use <pre> tag to preserve spaces,

enter image description here Take a look at this, http://jsfiddle.net/qx7NY/10/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top