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.
我在一页上有 2 个列表 - http://jsfiddle.net/nalsur/CneTJ/
现在我想为每个人添加/创建独立滚动
如何:)
谢谢
您将每个列表包装在一个 div 中。给 div 一个高度并将溢出设置为自动。
注意:为了触发滚动,ul 列表的高度必须大于父 div。
.Scrollable { overflow: auto; height: 500px; } <div class="Scrollable"> <ul class="FirstUL"></ul> </div> <div class="Scrollable"> <ul class="FirstUL"></ul> </div>