美文网首页
使用CSS隐藏元素滚动条

使用CSS隐藏元素滚动条

作者: 理子 | 来源:发表于2020-07-02 22:50 被阅读0次

    使用CSS隐藏元素滚动条

    .demo::-webkit-scrollbar {
      display: none; /* Chrome Safari */
    }
    
    .demo {
      scrollbar-width: none; /* firefox */
      -ms-overflow-style: none; /* IE 10+ */
      overflow-x: hidden;
      overflow-y: auto;
    }
    

    相关文章

      网友评论

          本文标题:使用CSS隐藏元素滚动条

          本文链接:https://www.haomeiwen.com/subject/idgdqktx.html