jonathantneal / flexibility

A JavaScript polyfill for Flexbox
https://jonathantneal.github.io/flexibility/
MIT License
4.33k stars 479 forks source link

Hidden elements get displayed after polyfill is applied #90

Open smohadjer opened 7 years ago

smohadjer commented 7 years ago

Flexbox children with display: none become visible (display: block) after flexibility kicks in!

skarensmoll commented 7 years ago

same happens to me :(

anastasiap commented 6 years ago

Setting !important for IE only saved my butt.

.element { @media screen\0 { display: none !important; } }