Width ignored on flexbox items

后端 未结 8 1809
有刺的猬
有刺的猬 2021-01-30 02:42

http://jsfiddle.net/XW9Se/

I\'ve set width: 200px; on the left

but if I view it with the browser inspector tool it appears that the
8条回答
  •  抹茶落季
    2021-01-30 03:40

    Remove the width on .container > div and use flex: auto; on #main: fiddle

    #main {
       flex: auto; 
       background: lightblue; 
      -webkit-order: 2;
       order: 2;     
    }
    

提交回复
热议问题