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

“white-space:nowrap;”

  <html>

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

  </html>

  <style>

    .box{

       100px;

      height: 25px;

      white-space:nowrap;
    }

  </style>

使用white-space:nowrap

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

原文地址:https://www.cnblogs.com/liuting1314521/p/6226272.html