.time { padding-left: 41rpx; margin-top: 30rpx; width: 150rpx; height: 17rpx; font-size: 23rpx; font-family: SourceHanSansCN; font-weight: 300; color: #545454; line-height: 37rpx; float: left; display: flex; },文字一行展示
时间: 2024-03-01 15:55:12 浏览: 178
.time
如果要让文字只显示一行,可以在样式中添加`white-space: nowrap;`,这样文字就会在一行中展示,不会换行。修改后的代码如下:
```css
.time {
padding-left: 41rpx;
margin-top: 30rpx;
width: 150rpx;
height: 17rpx;
font-size: 23rpx;
font-family: SourceHanSansCN;
font-weight: 300;
color: #545454;
line-height: 37rpx;
float: left;
display: flex;
white-space: nowrap;
}
```
阅读全文