美文网首页
微信小程序sroll-view组件横向滚动

微信小程序sroll-view组件横向滚动

作者: 前端记事本 | 来源:发表于2018-09-21 09:09 被阅读0次

    scroll-view设置高度后无法滚动,溢出内容被隐藏,就像overflow: hidden

    需要scroll-view设置 white-space: nowrap;给个高度;sroll-view直接子元素设置display: inline-block

    wxml文件sroll-view组件中添加scroll-x

    wxss如下:

    scroll-view {

      height: 200rpx;

      white-space: nowrap;

    }

    .scroll-item {

      display: inline-block;

    }

    相关文章

      网友评论

          本文标题:微信小程序sroll-view组件横向滚动

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