From e4a7827199b61e1cdcabe807044b3a2384bba924 Mon Sep 17 00:00:00 2001 From: Jonathan Neal Date: Wed, 6 Apr 2016 22:50:53 -0400 Subject: [PATCH] Remove overflow from select and update multiple overflow While the consistent `overflow` for `select` is `visible`, updating this property has no effect in any browser, but instead creates an inappropriately visible overflow for `select[multiple]`. --- normalize.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/normalize.css b/normalize.css index d51d1a9..8ae1019 100644 --- a/normalize.css +++ b/normalize.css @@ -271,12 +271,10 @@ optgroup { /** * Show the overflow in IE. * 1. Show the overflow in Edge. - * 2. Show the overflow in Edge, Firefox, and IE. */ button, -input, /* 1 */ -select { /* 2 */ +input { /* 1 */ overflow: visible; }