Vue, css realizes element hiding or canceling scroll bar

For the element css using overflow: scroll; the scroll bar problem appears, if you want to hide or cancel, you only need to operate on this element.

        .scroll{
            overflow: scroll;
        }
        .scroll::-webkit-scrollbar{//隐藏或取消滚动条
            display: none;
        }

Guess you like

Origin blog.csdn.net/m0_60322614/article/details/128669826