From 1eca4bfff5ee90a4e6178905359580dcc37862fe Mon Sep 17 00:00:00 2001 From: Emil Uzelac Date: Mon, 24 Feb 2014 22:35:49 -0600 Subject: [PATCH] Selector Hack ```*vertical-align: middle; /* Improves appearance and consistency in all browsers */``` does not apply to all browsers. Selector hack ```*``` is IE6/IE7 only. See https://gist.github.com/necolas/983116 --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index bca0504..507a99f 100644 --- a/style.css +++ b/style.css @@ -247,7 +247,7 @@ textarea { font-size: 100%; /* Corrects font size not being inherited in all browsers */ margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ vertical-align: baseline; /* Improves appearance and consistency in all browsers */ - *vertical-align: middle; /* Improves appearance and consistency in all browsers */ + *vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */ } button, input[type="button"],