Combine two same selectors #553

This commit is contained in:
Роман Булатов 2016-03-24 00:57:32 +03:00
parent f84aad3434
commit 5ef046fbd0

18
normalize.css vendored
View File

@ -248,14 +248,16 @@ hr {
========================================================================== */ ========================================================================== */
/** /**
* Change font properties to `inherit` in all browsers (opinionated). * 1. Change font properties to `inherit` in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/ */
button, button,
input, input,
select, select,
textarea { textarea {
font: inherit; font: inherit; /* 1 */
margin: 0; /* 2 */
} }
/** /**
@ -278,18 +280,6 @@ select { /* 2 */
overflow: visible; overflow: visible;
} }
/**
* Remove the margin in Safari.
* 1. Remove the margin in Firefox and Safari.
*/
button,
input,
select,
textarea { /* 1 */
margin: 0;
}
/** /**
* Remove the inheritance of text transform in Edge, Firefox, and IE. * Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox. * 1. Remove the inheritance of text transform in Firefox.