问题描述
div
设置定位后,内容不能滚动。
解决方案
css
.container {
position: fixed;
top: 116px;
bottom: 0px;
overflow-x: hidden;
overflow-y: scroll;
}
div
设置定位后,内容不能滚动。
.container {
position: fixed;
top: 116px;
bottom: 0px;
overflow-x: hidden;
overflow-y: scroll;
}