Keeping a string of text together on one line

后端 未结 2 532
小鲜肉
小鲜肉 2021-02-05 01:46

Is there a way to keep a string of text on one line, so that if the div width gets to small, the whole string will drop to the next line instead of half of it?

Example:

2条回答
  •  迷失自我
    2021-02-05 02:45

    CSS

    .nowrap {
        white-space: nowrap;
    }
    

    HTML

    Industry Updates -
    8th September 2013
    

    Any element with white-space: nowrap stays on one line

提交回复
热议问题