Skip to content

Fix Flexbox Children Not Shrinking

Fix Flexbox Children Not Shrinking

flexbox-fix.css
/**
* First discovered through Theo Browne (t3.gg)
* As suggested by Adam Wathan in a twit
* For more info read up this in depth article by Josh Comeau:
* https://www.joshwcomeau.com/css/interactive-guide-to-flexbox/#the-minimum-size-gotcha-11
* With a twist from Kevin Powell:
* https://www.youtube.com/watch?v=FD3aC_Ke8uk
*/
input,
textarea {
min-inline-size: 0;
}