How to insert spaces/tabs in text using HTML/CSS

后端 未结 18 2634
死守一世寂寞
死守一世寂寞 2020-11-28 01:20

Possible ways:

 ... 

or

style=\"white-space:pre\"

Anything else?

18条回答
  •  粉色の甜心
    2020-11-28 01:58

    White space? Couldn't you just use padding? That is an idea. That is how you can add some "blank area" around your element. So you can use the following CSS tags:

    padding: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    

提交回复
热议问题