实现垂直方向超出内容自动出现滚动条
2018-11-04 本文已影响11人
放风筝的小小马
#app {
position: relative;
min-height: 100%;
min-width: 100%;
> div {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow-y: auto;
overflow-x: hidden;
}
}