Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有div哪个显示谁在线的列表,我想在我的数据显示时显示滚动条,我10的默认值div是没有数据。这意味着数据将在用户在线时出现。
div
10
问题是什么时候有1000用户在线?我的div遗嘱太长了。
1000
我试过这个CSS:
#isi_menu_kanan{ height: 100px; overflow: show; }
但这意味着我设置了heightdiv 的默认值,如果没有用户在线,则 div 会出现空数据。请帮我解决这个问题。
height
如果我理解了您的问题,您正试图拥有一个div包含 1000 行但仅100px高的行?在这种情况下,您需要使用overflow: scroll.
100px
overflow: scroll
试试这个:
#isi_menu_kanan{ max-height: 100px; overflow: scroll; }
示例小提琴
注意,我也用过max-height. 这意味着如果div高度中只有 1 条线,则会收缩以适应。这里不需要 jQuery 和 javascript。
max-height