We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf0376c + 9f33cd7 commit 4a1ca8cCopy full SHA for 4a1ca8c
1 file changed
normalize.css
@@ -184,10 +184,15 @@ input { /* 1 */
184
185
/**
186
* Remove the inheritance of text transform in Edge, IE11, and IE10.
187
+ * 1. Remove the inheritance of text transform in Firefox.
188
+ * 2. Remove blue color in iOS 15+ Safari
189
*/
190
-button {
- text-transform: none;
191
+
192
+button,
193
+select {
194
+ text-transform: none; /* 1 */
195
+ color: inherit; /* 2 */
196
}
197
198
0 commit comments