How to put spaces between text in html?

后端 未结 5 951
渐次进展
渐次进展 2021-01-19 12:14

How do you to put spaces between text in html? For example,

a b c

What do you put to have space between b and c?

5条回答
  •  心在旅途
    2021-01-19 12:57

    Use the CSS property word-spacing to set space between words. You can also use and apply margin or padding.

    So:

    span { margin-left:1em }
    

    a b c

提交回复
热议问题