0

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

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

1 回答 1

3

字幕翻译成 HTMLlegend元素。所以使用 CSS 将legend元素字体设置为粗体。

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

legend {
  font-weight: bold;
}

但是,如果您只希望它用于特定的CaptionPanel,则向其添加样式名称:

examplePanel.addStyleName("examplePanelStyleName");

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

.examplePanelStyleName legend {
   font-weight: bold;
}
于 2012-08-08T17:49:53.850 回答