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 が自分の css をオーバーライドしないようにするにはどうすればよいですか?
CSS スタイルの後に !Important を追加するだけです。
例えば:
#example { position: absolute !important; }