How to make a DIV not wrap?

前端 未结 13 484
名媛妹妹
名媛妹妹 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;
    }
    <h2>Sample Text.</h2>
    
    <p>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</p>
    
    <h3>Then some other text</h3>

    0 讨论(0)
提交回复
热议问题