div滚动不会自动显示。
.sectionContent {
height: 100vh;
overflow: hidden;
background: #fff;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
justify-content: flex-start;
}
.asideContent {
flex: none;
width: 30rem;
overflow-x: hidden;
overflow-y: auto;
padding: 0;
background: #eceff1;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: stretch;
justify-content: space-between;
min-height: 100%;
}
.rightSideDiv {
width: 100%;
overflow-x: hidden;
overflow-y: auto;
padding: 2rem;
min-height: 100%;
}
我在旁边有科和Div。以响应方式签入时,div滚动不会自动显示,有时会显示,但div不会完全显示。除了div css类,我在这里提供了部分内容,
答案 0 :(得分:0)
在将.sectionContent更改为{height:60vh}之后,但我不确定其正确与否。