From 190d52ebacefee1e66d3ba30b6c30146214f8829 Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Thu, 11 Apr 2019 16:21:24 -0700 Subject: [PATCH] Don't make inputs have `overflow:visible` This addresses #779 -- as noted there, `overflow:visible` has no effect on most input types in most browsers; and it only serves to drive browsers away from a consensus rendering, rather than bringing them closer to a consensus. --- normalize.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/normalize.css b/normalize.css index 192eb9ce4..37459426f 100644 --- a/normalize.css +++ b/normalize.css @@ -170,11 +170,9 @@ textarea { /** * Show the overflow in IE. - * 1. Show the overflow in Edge. */ -button, -input { /* 1 */ +button { overflow: visible; }