知识篇 -- Vue 隐藏滚动条

Ray Shine 2022/12/5 Vue

# 设置滚动条

	overflow-x: scroll;
	white-space: nowarp;

# 隐藏滚动条

	::-webkit-scrollbar {
		width: 0 !important
	}
	::-webkit-scrollbar {
		width: 0 !important
		height: 0
	}

最后更新时间: 2025/8/27 00:23:57