.box{
position: absolute; //设置相对父节点坐标 width:90%; height: 75%; top:14%; left:5%; overflow-y: scroll; //上下滚动
overflow-x: scroll; //左右滚动
overflow: scroll; //上下左右皆可滚动
}
<div class="box">
滚动窗口可视内容
</div>