美文网首页
Vue 设置内容滚动 并且隐藏滚动条

Vue 设置内容滚动 并且隐藏滚动条

作者: writeSpace | 来源:发表于2022-07-16 11:34 被阅读0次
    .father {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        &::-webkit-scrollbar {
          width: 0;
        }
        .children {
          .block-style {
            flex-shrink: 0;
          }
        }
      }
    
    

    设置子视图超出父试图之后滚动
    overflow-x: scroll;设置滚动
    flex-direction: row;横向布局
    &::-webkit-scrollbar {
    width: 0;
    }设置滚动条为0
    flex-shrink: 0;禁止压缩

    相关文章

      网友评论

          本文标题:Vue 设置内容滚动 并且隐藏滚动条

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