Zurb Foundation: Want horizontal scrollbar -
i have following code:
<div class="row"> <div class="large-12 columns"> <div class="item">items go here</div> <div class="item">items go here</div> ... many .item here ... </div> </div>
each .item
have fixed width, 150px
. want div large-12
scrollable if there more .item
can fit within current screen. how can that? currently, if add many .item
, go next line!
thanks
you'll need add overflow-x:scroll;
, white-space:nowrap;
parent container. , display:inline-block;
.item
s.
here's working demo.
Comments
Post a Comment