使用css隐藏元素滚动条

使用前:

使用后:

   

.element::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    .element{
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
        overflow: auto; /* 确保元素在内容过多时可以滚动 */
    }

猜你喜欢

转载自blog.csdn.net/ZYK187/article/details/137599256
今日推荐