禁止换行“white-space:nowrap;”!

时间:2021-07-15 07:53:50

“white-space:nowrap;”

  <html>

    <div class="box">精彩的生活,精彩的世界</div>

  </html>

  <style>

    .box{

      width: 100px;

      height: 25px;

      white-space:nowrap;
    }

  </style>

使用white-space:nowrap

  固定宽度改变成“width:auto;”并不能解决所有情况的bug;设置文字为固定宽度,文字*溢出所设宽度,*换行,但想在一行上显示“white-space:nowrap;”可以解决!