HTML/CSS - Best practice for preserving white space on certain elements?

前端 未结 4 1518
予麋鹿
予麋鹿 2020-11-27 04:51

What is the best way to preserve white space in HTML? We have a lot of pages that bring down data from our database, and the data may have multiple spaces in it.

4条回答
  •  春和景丽
    2020-11-27 05:39

    I would use the same technique, but inside a data class wrapper where it is needed:

    .data a, .data span, .data tr, .data td { white-space: pre; }
    

    HTML:

    ....

提交回复
热议问题