How to make a DIV not wrap?

前端 未结 13 540
名媛妹妹
名媛妹妹 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:12

    you can use

    display: table;
    

    for your container and therfore avoid the overflow: hidden;. It should do the job if you used it just for warpping purpose.

提交回复
热议问题