需要加滚动条的盒子添加css代码:
height: calc(100vh - 170px);
overflow: auto;
/* 滚动条 */
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-thumb {
height: 50px;
background-color: #eee;
-webkit-border-radius: 10px;
}
注意: 需要固定高度,并overflow: auto才会出现滚动条