Expand container div with content width

前端 未结 6 389
逝去的感伤
逝去的感伤 2020-12-24 10:40

I have the following structure in my application:

6条回答
  •  情话喂你
    2020-12-24 11:43

    The modern solution today would be

    #child_container {
        display: flex;
    }
    

    Because flex-wrap is by default set to

    flex-wrap: nowrap;
    

    This simple solution works like a charm. And by now also in all relevant browsers.

提交回复
热议问题