uniapp scroll-view显示滚动条


在style中添加样式:

css 复制代码
	::v-deep ::-webkit-scrollbar {
		/* 滚动条整体样式 */
		display: block;
		width: 10rpx !important;
		height: 10rpx !important;
		-webkit-appearance: auto !important;
		background: transparent;
		overflow: auto !important;
	}
	::v-deep ::-webkit-scrollbar-thumb {
		/* 滚动条里面小方块 */
		border-radius: 10rpx !important;
		box-shadow: inset 0 0 5rpx rgba(0, 0, 0, 0.2) !important;
		background-color: #E2E2E2 !important;
	}
	::v-deep ::-webkit-scrollbar-track {
		/* 滚动条 */
		border-radius: 10rpx !important;
		box-shadow: inset 0 0 5rpx rgba(0, 0, 0, 0.2) !important;
		background-color: #ededed !important;
	}
相关推荐
鑫~阳2 小时前
html + css 淘宝网实战
前端·css·html
Catherinemin2 小时前
CSS|14 z-index
前端·css
NoneCoder3 小时前
CSS系列(36)-- Containment详解
前端·css
荆州克莱8 小时前
Golang的性能监控指标
spring boot·spring·spring cloud·css3·技术
Simaoya8 小时前
【vue】css模拟玻璃球体效果(带高光)
前端·css·vue.js
孙 悟 空9 小时前
uni-app:监听页面返回,禁用返回操作
前端·javascript·uni-app
温轻舟11 小时前
前端开发 -- 自定义鼠标指针样式
开发语言·前端·javascript·css·html·温轻舟
LUwantAC13 小时前
CSS(四)display和float
前端·css
cwtlw13 小时前
CSS学习记录20
前端·css·笔记·学习
米奇妙妙wuu14 小时前
react使用sse流实现chat大模型问答,补充css样式
前端·css·react.js