GWT - 样式CaptionPanel标题为粗体

时间:2012-08-08 17:45:50

标签: gwt

将CaptionPanel标题设置为粗体的最佳方法是什么?我希望我可以应用CSS样式。我现在正在做:

CaptionPanel examplePanel = new CaptionPanel();
examplePanel.setCaptionHTML("<b>CaptionPanel Title</b>");

1 个答案:

答案 0 :(得分:3)

字幕在HTML legend元素中翻译。因此,使用CSS将legend元素字体设置为粗体。

如果您想在所有字幕上使用,只需执行以下操作:

legend {
  font-weight: bold;
}

但如果您只想要特定的CaptionPanel,则可以为其添加样式名称:

examplePanel.addStyleName("examplePanelStyleName");

并使用CSS中的面板样式名称:

.examplePanelStyleName legend {
   font-weight: bold;
}