Prevent wrapping of span or div

后端 未结 5 1350
-上瘾入骨i
-上瘾入骨i 2020-12-22 21:24

I\'d like to put a group of div elements of fixed width into a container and have the horizontal scroll bar appeared. The div/span ele

5条回答
  •  [愿得一人]
    2020-12-22 21:59

    It works with just this:

    .slideContainer {
        white-space: nowrap;
    }
    .slide { 
        display: inline-block;
        width: 600px;
        white-space: normal;
    }
    

    I did originally have float : left; and that prevented it from working correctly.

    Thanks for posting this solution.

提交回复
热议问题