我有一个overflow:scroll
的div,水平滚动。
如何在css中隐藏div的滚动条?
答案 0 :(得分:0)
答案 1 :(得分:0)
看看这个
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
div.scroll {
background-color: #00FFFF;
width: 200px;
height: 100px;
overflow: scroll;
}