加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
原型.html 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
<!doctype html>
<html class="">
<head>
<style>
.x-scrollbar-container {
scrollbar-width: none;
-ms-overflow-style: none;
}
.x-scrollbar-container::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body>
<div class="x-scrollbar" style="
width: 300px;
height: 300px;
background: antiquewhite;
overflow: hidden;
position: relative;
">
<div class="x-scrollbar-container" style="
width: 100%;
height: 100%;
overflow: auto;
">
<div class="x-scrollbar-content" style="
display: inline-block;
vertical-align: middle;
min-width: 100%;
">
<div style="
width: 500px;
height: 500px;
border: 1px solid;
"></div>
</div>
</div>
<div class="x-scrollbar-x" style="
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 8px;
background: #00ffff4f;
"></div>
<div class="x-scrollbar-y" style="
position: absolute;
right: 0;
top: 0;
width: 8px;
height: 100%;
background: #00ffff4f;
"></div>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化