From 68322db312c1c8eb9fd1e9d2571c7728ea9c4cbe Mon Sep 17 00:00:00 2001 From: Oleg Korsunsky Date: Fri, 24 Jan 2014 13:16:11 -0800 Subject: [PATCH] Address `button` overflow in IE 8/9/10 --- normalize.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/normalize.css b/normalize.css index 615fa33..7ae90bb 100644 --- a/normalize.css +++ b/normalize.css @@ -297,12 +297,19 @@ optgroup { font-weight: bold; } +/** + * Address `overflow` set to `hidden` in IE 8/9/10. + */ + +button { + overflow: visible; +} + /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ -button, input { line-height: normal; }