Material-UI:设置 SelectField(或其底层 DropDownMenu)的样式
Material-UI: Set the style of a SelectField (or its underlying DropDownMenu)
尝试使用简单的 SelectField,它工作很好,但看起来很糟糕!
我使用的是 MaterialUI 组件的默认样式和标准主题。
网站上的演示(点击后)如下所示:
然而,我的看起来像:
所以,略有不同:-)
谢谢!
感谢@Matt,事实证明我正在使用 normalize.css CSS 重置。
代码的重要部分是:
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
-webkit-appearance: button; /* 2 */
}
注释掉这一部分,它工作正常。
尝试使用简单的 SelectField,它工作很好,但看起来很糟糕!
我使用的是 MaterialUI 组件的默认样式和标准主题。
网站上的演示(点击后)如下所示:
然而,我的看起来像:
所以,略有不同:-)
谢谢!
感谢@Matt,事实证明我正在使用 normalize.css CSS 重置。
代码的重要部分是:
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
-webkit-appearance: button; /* 2 */
}
注释掉这一部分,它工作正常。