css 隐藏 scrollbar

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/palmer_kai/article/details/82790343

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
}

猜你喜欢

转载自blog.csdn.net/palmer_kai/article/details/82790343
今日推荐