forked from mirror/_s
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
This commit is contained in:
parent
1e6e4d82ca
commit
1eca4bfff5
|
@ -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"],
|
||||
|
|
Reference in New Issue