vue 写的H5页面高度无效果,
width: 100%;
height: 120px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
border-bottom: 1px solid #b19967;如果用的display: flex;弹性布局,在该样式中加入 flex-shrink: 0; 试一试
加入后的样式
width: 100%;
height: 120px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
border-bottom: 1px solid #b19967; flex-shrink: 0;