我使用过手风琴插件,修改了CSS和jQuery,现在我想实现这个问题标题中描述的结果。基本上,一个简单的问题,如果内容的高度小于最大高度,我该如何删除滚动标签?
.info_inside {
max-height: 100px;
overflow-y: scroll;
}
提前谢谢。
答案 0 :(得分:3)
使用auto
代替scroll
.info_inside {
max-height: 100px;
overflow-y: auto;
}