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.
コンテナに含まれるすべてのウィジェットではなく、GWTコンテナのみにスタイルを追加するにはどうすればよいですか? たとえば、CaptionPanel のキャプションのスタイルを設定する必要があります (キャプションを大きくして色を変更します)。しかし、CaptionPanel 全体にスタイルを追加すると、内部のすべてのウィジェットも追加されたスタイルを継承します。
CSS 101:legendの子である要素にスタイルを制限しますCaptionPanel。例えば
legend
CaptionPanel
myCaptionPanel.addStyleName("foo");
.foo > legend { color: red; } /* use ".foo legend" above, without the ">" if you need to support IE6 */