From 13fbeba20f7eded9e1c8b2a0641d433c78e1151e Mon Sep 17 00:00:00 2001 From: David Anson Date: Thu, 7 May 2015 23:11:28 -0700 Subject: [PATCH] Add min-width/height=0 to flex content to fix behavior in Firefox. --- demo/default.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demo/default.css b/demo/default.css index 26249ddd..b5030189 100644 --- a/demo/default.css +++ b/demo/default.css @@ -55,6 +55,8 @@ textarea { .flex-fill { flex-grow: 1; flex-basis: 0; + min-width: 0; + min-height: 0; } .highlight { background: yellow;