html设置局部区域上下滚动,不显示滚动条

css代码(一定要给元素设置宽高):

        .conten-box{

               overflow: hidden;

               overflow-y: scroll;

               white-space: nowrap;

               height:535px;

               width:100%;

         }

        .conten-box::-webkit-scrollbar {

                width: 0;

        }

html代码:

....内容....

你可能感兴趣的:(html设置区域滚动)