有什么方法可以使 div 可以使用 overflow-y:hidden 滚动;和溢出-x:隐藏?
我正在尝试没有成功,也许我需要一些 js 或 jquery 脚本?
我的意思是,我想让 div 在 y 轴上滚动而不在右侧显示滚动条(就像现在一样)。
试了:
.get-list{
position:absolute;
z-index:444;
text-align: center;
display: none;
bottom:0;
clear:both !important;
left:0;
right:0;
top:11%;
margin:0 auto;
background:#fff;
max-height:800px;
overflow-y:no-display;
overflow-x:hidden;
display: block;
}
谢谢
编辑
.log-widget-list{
position:absolute;
z-index:444;
text-align: center;
display: none;
width:99%;
margin:0 auto;
background:#fff;
height:800px;
overflow: hidden;
}
.log-widget-list .scroller{
overflow: scroll;
height:800px;
width:100%;
}
无论如何它都会显示正确的滚动条