I'm creating web app and I'm stuck so I need your help.
So, user can dinamically create <ul>
which appears in container, everything is ok until number of unordered lists exceeds the width of container, then those lists starts to appear under already created lists, but I want them always on top of container and when user needs more space to store all list horizontal scrollbar should appear. I already placed overflow: auto;
in my container but it only works for vertical scrollbar.
<div class="columns columnsPrivate">
... some simple unordered lists with couple list items which I append using javascript
</div
So my question is, how to force those unordered lists to appear on top of 'columns' class, and when I say on top I mean position: relative: top: 0px;
, without placing them below already created lists.