How can I get FF 33.x Flexbox behavior in FF 34.x?

后端 未结 3 1535
野的像风
野的像风 2020-11-22 11:30

We use flexbox heavily for an desktop application like looking web app and it has been working out great.

But with the latest Firefox Developer Edition (35.0a2) the

3条回答
  •  孤街浪徒
    2020-11-22 12:21

    none of these fixes worked for me, even though they work. In my case, I was supplying a display: table-cell fallback, which seemed to be taking over. Using SASS, including it like this, the fallback works for IE without affecting FF:

    flex: auto; // or whatever   
    .ie & {
      display: table-cell;
    }
    

提交回复
热议问题