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]`.
This commit is contained in:
Jonathan Neal 2016-04-06 22:50:53 -04:00
parent ab3abb6d36
commit e4a7827199

4
normalize.css vendored
View File

@ -271,12 +271,10 @@ optgroup {
/** /**
* Show the overflow in IE. * Show the overflow in IE.
* 1. Show the overflow in Edge. * 1. Show the overflow in Edge.
* 2. Show the overflow in Edge, Firefox, and IE.
*/ */
button, button,
input, /* 1 */ input { /* 1 */
select { /* 2 */
overflow: visible; overflow: visible;
} }