css把容器级别(div...)标签固定在一个位置(在页面最右边)
.process{ border:1px solid #B7B7B8; background:#F8F8F8; width:80px; height:250px; <!--固定定位-->
position: fixed;
right:0;
text-align: center;
}
没有滚动条时候:

有滚动条时候:

.process{ border:1px solid #B7B7B8; background:#F8F8F8; width:80px; height:250px; <!--固定定位-->
position: fixed;
right:0;
text-align: center;
}
没有滚动条时候:

有滚动条时候:
