Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 web 应用程序中实现提示,但我不希望它们像 sencha 示例那样位于底部。我更喜欢将它们放在顶部并居中。
所以我在我的提示中删除了目标 conf 并尝试添加一些我自己的 css。我的背景自定义 css 完美,但左/顶部 css 被 ext 覆盖。
如何阻止 Extjs css 覆盖我自己的?
只需添加 !Important,在您的 CSS 样式之后。
例如:
#example { position: absolute !important; }