<view class="content">一二三四五六</view>
1、固定寬度勋篓,強(qiáng)制不換行
image.png
.content {
color: #FFFFFF;
width: 100rpx;
background-color: #007AFF;
white-space:nowrap;
}
2、固定寬度,強(qiáng)制不換行缴淋,隱藏超出內(nèi)容
image.png
.content {
color: #FFFFFF;
width: 100rpx;
background-color: #007AFF;
white-space:nowrap;
overflow:hidden;
}
3准给、固定寬度泄朴,超出內(nèi)容顯示省略號(hào)...
image.png
.content {
color: #FFFFFF;
width: 150rpx;
background-color: #007AFF;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}