问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug overflow:hidden 客户端 6.7.3 2.4.0
- 当Bug 的表现(可附上截图)
获取不到节点的真实高度,都是一个固定的数
前
bug,,真实效果应该是
相关代码:
wxml:
变更前
{{data}}
wcss:
.item-before{
display: flex;
width:max-content;
flex-direction: column;
padding-left: 31rpx;
justify-content: flex-start;
background: #F8FBFF;
/*实现多余的文字隐藏并用省略号来代表被隐藏的文字 */
overflow: hidden;
}
.view-divider{
width: 2rpx;
height: 100%;
background: #E1E1E1;
}
.view-item-before{
font-family: PingFangHK-Regular;
font-size: 26rpx;
color: #FF4747;
margin-top: 13rpx;
margin-bottom: 25rpx;
}
.view-item-after{
font-family: PingFangHK-Regular;
font-size: 26rpx;
color: #297AFF;
margin-top: 13rpx;
margin-bottom: 25rpx;
}