How to create small SPACES in HTML?

后端 未结 5 1903
傲寒
傲寒 2021-01-31 09:08

There is em dash and en dash. Is there an \"en\" equivalent to   ? Is there an en equivalent to pure Ascii 32?

I want a better way to

5条回答
  •  深忆病人
    2021-01-31 09:56

    Don't use hacks that make no sense. If you wish to separate some words, I suggest you use the CSS property word-spacing:

    .strangeNumbers {
      word-spacing: 0.5em;
    }
    123 456

提交回复
热议问题