css 隐藏 scrollbar

css 隐藏 scrollbar

方案一: 兼容非 -webkit- browser(一般就是 pc端)

原理就是使用一个 wrapper overflow:hidden 掉字元素 多出来的 scrollbar 的宽度

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>css隐藏 scrollbar 兼容各浏览器</title>
	<style>
		* {
			margin: 0;
			padding: 0;
			list-style: none;
		}
		li {
			line-height: 60px;
		}

		.wrapper {
			margin: 200px auto 0 auto;
			width: 184px;
			overflow: hidden;
		}
		.scrollbar {
			height: 200px;
			width: 200px;
			background-color: skyblue;
			overflow-x: hidden;
			overflow-y: scroll;
		}
	</style>
	<script src="../jquery.js"></script>
</head>
<body>
	<div class="wrapper">
		<div class="scrollbar">
			<ul>
				<li>hello,world</li>
				<li>hello,world</li>
				<li>hello,world</li>
				<li>hello,world</li>
				<li>hello,world</li>
				<li>hello,world</li>
			</ul>
		</div>	
	</div>
	<script>
		
	</script>
</body>
</html>

方案二: -webkit- browser 可以使用下面的伪类

.element::-webkit-scrollbar {
    display:none
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值