div固定位置
.box-audio-bottom {
/* 固定位置 */
position: absolute;
bottom: 0;
padding-bottom: 0px;
width: 65%;
}
div固定高度
.box-fixed-height-simulating {
height: 340px;
border: 1px solid gray;
margin: 5px;
}
文本固定高度 超出滚动
.text-explain {
font-size: 18px;
margin-top: 10px;
margin-left: 10px;
max-height: 60px;
overflow-y: auto;
}
max-height: 60px;
overflow-y: auto;