“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;”可以解決!
