原文:uniapp——scroll-view组件隐藏滚动条

在用uniapp写这个pc端项目时遇到一个表格需要展示全部的数据,但是页面上只显示 条数据,刚开始用overflow y: scroll 出现滚动条。 因为滚动条占用位置导致表格错位,上下不对齐。scroll view组件还是出现滚动条。 重点来了 在样式中引用这段代码,就可以解决啦 :: webkit scrollbar display: none width: important heigh ...

2021-04-29 14:03 0 2014 推荐指数:

查看详情

uniappscroll-View隐藏滚动条方法

/deep/.uni-scroll-view::-webkit-scrollbar {   /* 隐藏滚动条,但依旧具备可以滚动的功能 */   display: none } ...

Wed Nov 18 18:27:00 CST 2020 0 1691
uniapp scroll-view 组件右侧的滚动条

在css中添加下面css内容 <scroll-view>uniapp 滚动区域</scroll-view> <style> scroll-view{ width:690rpx; height:700rpx; margin ...

Tue Apr 20 18:07:00 CST 2021 0 246
uniapp去除scroll-view滚动条的方法

scroll-view 在 Android 和 小程序 中 , 默认没有 滚动条 在 iOS 中,出现 滚动条; 解决办法: 在页面的style标签中 ➕ 如下代码 ...

Sat Dec 12 03:03:00 CST 2020 0 1608
uniapp滚动组件scroll-view

//scroll-x="true" || scroll-y="true" <view class="scroll-view"> <scroll-view class="scroll_box" scroll-x="true" scroll-left="0"> < ...

Mon Apr 18 19:22:00 CST 2022 0 857
 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM