将CaptionPanel标题设置为粗体的最佳方法是什么?我希望我可以应用CSS样式。我现在正在做:
CaptionPanel examplePanel = new CaptionPanel();
examplePanel.setCaptionHTML("<b>CaptionPanel Title</b>");
答案 0 :(得分:3)
字幕在HTML legend
元素中翻译。因此,使用CSS将legend
元素字体设置为粗体。
如果您想在所有字幕上使用,只需执行以下操作:
legend {
font-weight: bold;
}
但如果您只想要特定的CaptionPanel
,则可以为其添加样式名称:
examplePanel.addStyleName("examplePanelStyleName");
并使用CSS中的面板样式名称:
.examplePanelStyleName legend {
font-weight: bold;
}