From 243e9a8b4a3e66cf8a5556ed6f5e8051c6d57b0b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 26 Aug 2021 12:14:48 +0200 Subject: [PATCH] LibWeb: Correct CSS initial values for min-width and min-height The initial value for these is auto, not 0. --- Userland/Libraries/LibWeb/CSS/Properties.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Properties.json b/Userland/Libraries/LibWeb/CSS/Properties.json index e5e3675b23..184a0a8a8c 100644 --- a/Userland/Libraries/LibWeb/CSS/Properties.json +++ b/Userland/Libraries/LibWeb/CSS/Properties.json @@ -346,11 +346,11 @@ }, "min-height": { "inherited": false, - "initial": "0" + "initial": "auto" }, "min-width": { "inherited": false, - "initial": "0" + "initial": "auto" }, "opacity": { "inherited": false,