How to make a DIV not wrap?

前端 未结 13 536
名媛妹妹
名媛妹妹 2020-11-30 19:32

I need to create a container DIV style that contains multiple other DIV\'s. It is asked that these DIV\'s wouldn\'t wrap if the browser window is resized to be narrow.

13条回答
  •  情深已故
    2020-11-30 20:31

    Use display:flex and white-space:nowrap

    p{
      display:flex;
      white-space:nowrap;
      overflow:auto;
    }

    Sample Text.

    Some example text that will not wrap..lla et dictum interdum, nisi lorem egestas odio, vitae scelerisque enim ligula venenatis dolor. Maecenas nisl est, ultrices nec congue eget, auctor vitae massa. Fusce luctus vestibulum augue ut aliquet. Mauris ante ligula, facilisis sed ornare eu, lobortis in odio. Praesent convallis urna a lacus interdum ut hendrerit risus congue. Nunc sagittis dictum nisi, sed ullamcorper ipsum d

    Then some other text

提交回复
热议问题