horizontal scroll of inline-block element

后端 未结 3 487
情歌与酒
情歌与酒 2021-01-11 17:41

I have inline-block divs however when they reach end of the screen, they go the next line instead of scrolling horizontally, can someone help me out? here is a fiddle

<
3条回答
  •  萌比男神i
    2021-01-11 17:58

    Hide the y overflow and use nowrap

    .dx {
        height: 100px;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
    }
    

    FIDDLE

提交回复
热议问题