目前我使用以下代码显示滚动条:
div.productsTree{
height:300px;
overflow:scroll;
}
使用此CSS时,滚动条始终可见,这意味着即使div内的内容不会溢出。
当内容符合上述高度时,如何隐藏它们?
答案 0 :(得分:2)
overflow:auto;
。就是这样。
答案 1 :(得分:2)
//Both x,y axis scroll
div.productsTree{
height:300px;
overflow:auto;
}
//only x axis scroll
div.productsTree{
height:300px;
overflow:auto;
overflow-y: hidden;
}
//only y axis scroll
div.productsTree{
height:300px;
overflow:auto;
overflow-x: hidden;
}