Vendor-prefixed properties precede their standard counterparts

This commit is contained in:
Jonathan 2011-05-03 16:10:28 -07:00
parent e3f2352235
commit 7514427a0d

4
normalize.css vendored
View File

@ -285,16 +285,16 @@ input[type='checkbox'],
input[type='radio'],
input[type='submit'],
select {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
input[type='text'],
input[type='password'],
textarea {
-webkit-appearance: textfield;
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}